.mobile-bottom-bar {
    display: none;
}
@media (max-width: 768px) {
    .mobile-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 70px;
        background: #666666;
        border-top: 1px solid #666666; 
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 9999;
    }
    .mobile-bottom-bar a {
        text-align: center;
        color: #fff;
        font-size: 12px;
        text-decoration: none;
        flex-grow: 1;
    }
    .mobile-bottom-bar a span {
        display: block;
        font-size: 18px;
    }
    .mobile-bottom-bar a.reservar {
        background: #6b46c1;
        color: #fff;
        padding: 8px 0;
        border-radius: 10px;
    }
}