header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Estilos personalizados para navbar responsive */
@media (max-width: 767px) {
    .phone-number-container {
        display: none;
    }
    .reserve-button {
        display: none;
    }

    /* Estilos para mejorar visualización del timeline en móvil */
    /* .relative.timeline-item .timeline-number {
        width: 3rem;
        height: 3rem;
        z-index: 10;
        box-shadow: 0 0 0 4px white;
        border: 2px solid #db2777;
    } */

    .relative.timeline-item .timeline-number span {
        font-size: 1.25rem;
    }

    .relative.timeline-item {
        padding-top: 2rem;
    }

    .timeline-title {
        margin-top: 1.5rem;
    }
}
/* Estilos para el menú móvil */
.mobile-menu {
    position: fixed;
    top: 4rem; /* Justo debajo del navbar */
    right: 0;
    width: 100%;
    height: calc(100vh - 4rem);
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 40;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Prevenir scroll del body cuando el menú está abierto */
body.menu-open {
    overflow: hidden;
}

/* Botón del menú hamburguesa con animación de íconos */
#mobile-menu-button {
    transition: transform 0.3s ease;
}

#mobile-menu-button.open #menu-icon-hamburger {
    opacity: 0;
}

#mobile-menu-button.open #menu-icon-close {
    opacity: 1;
}

/* Estilos para mejorar la visualización del menú móvil */
.mobile-menu-item {
    border-bottom: 1px solid #f3f4f6;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-item.active {
    background-color: #fdf2f8;
    border-radius: 0.5rem;
    border-bottom: none;
}
