/* assets/css/estilos.css */

/* ==========================================================================
   RESET GENERAL Y CONTENEDOR DE LA APP
   ========================================================================== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0b0b0f;
    color: #fff;
    -webkit-tap-highlight-color: transparent;
}

.app-container {
    max-width: 450px;
    margin: 0 auto;
    padding: 0 15px 40px 15px;
    box-sizing: border-box;
}

/* ==========================================================================
   NAVBAR GENERAL (Tus estilos originales para Móvil)
   ========================================================================== */
.navbar-gaston {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
    position: relative;
    min-height: 120px; 
    box-sizing: border-box;
}

/* El logo mantiene su tamaño base para heredar correctamente en las vistas */
.logo-eclipse {
    width: 200px;         
    height: 120px;        
    display: flex;
}

.nav-controles-derecha {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Menú desplegable original de celular */
.nav-menu-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #12121a;
    border-bottom: 3px solid #9b6dff;
    flex-direction: column;
    z-index: 10000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.8);
}

.nav-menu-links.show {
    display: flex;
}

.nav-menu-links a {
    padding: 15px 20px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #1c1c24;
}

.nav-menu-links a:hover {
    background: rgba(155, 109, 255, 0.1);
    color: #9b6dff;
}

/* Campanita y Notificaciones originales */
.campanita-container {
    position: relative;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
}

.badge-campanita {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ff4d4d;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
}

.dropdown-notificaciones {
    display: none;
    position: absolute;
    top: 35px;
    right: -10px;
    background: #1c1c24;
    width: 260px;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px;
    z-index: 10001;
    box-shadow: 0 5px 15px rgba(0,0,0,0.7);
}

.notif-item {
    font-size: 12px;
    padding: 10px;
    border-bottom: 1px solid #2a2a36;
    color: #ccc;
}

.notif-item:last-child {
    border-bottom: none;
}

/* ==========================================================================
   ESTILOS DE SLIDER / CARRUSEL DEL INICIO
   ========================================================================== */
.slider-box-gaston {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    border: 1px solid #1c1c24;
    box-sizing: border-box;
}

.slider-wrapper-gaston {
    display: flex; 
    width: 300%; 
    height: 100%; 
    transition: transform 0.4s ease-in-out;
}

.slide-item-gaston {
    width: 100%; 
    height: 100%; 
    background-size: cover !important; 
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.slide-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(18, 18, 26, 0.7);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
    z-index: 10;
}
.slide-arrow-btn:hover {
    background: #9b6dff;
    border-color: #9b6dff;
}
.slide-arrow-btn.left-arrow { left: 10px; }
.slide-arrow-btn.right-arrow { right: 10px; }

.slider-dots-zone {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}
.dot-gaston {
    width: 7px;
    height: 7px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}
.dot-gaston.active {
    background: #9b6dff;
    width: 18px;
    border-radius: 4px;
}

/* ==========================================================================
   🖥️ INTERRUPTOR DE MODO WEB (Pantallas Grandes / PC)
   ========================================================================== */
@media (min-width: 768px) {
    /* Ocultar la hamburguesa en la compu */
    .menu-toggle {
        display: none !important;
    }

    /* Invertir el orden para que el menú quede a la izquierda de la campanita */
    .nav-controles-derecha {
        flex-direction: row-reverse;
    }

    /* Transformar el menú desplegable en una barra horizontal en PC */
    .nav-menu-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        width: auto;
        background: transparent;
        border-bottom: none;
        box-shadow: none;
        gap: 10px;
    }

    .nav-menu-links a {
        border-bottom: none;
        padding: 8px 14px;
        border-radius: 8px;
        font-size: 14px;
        color: #aaa;
    }

    .nav-menu-links a:hover {
        background: rgba(155, 109, 255, 0.12);
        color: #9b6dff;
        transform: translateY(-2px);
    }

    /* Expandir el cuerpo principal de la web y la barra */
    .app-container, .navbar-gaston {
        max-width: 950px !important;
        margin: 0 auto;
    }
    
    /* Ajustar la altura del slider en PC */
    .slider-box-gaston {
        height: 380px !important;
    }
	/* Botón especial para Registrarse / Reservar */
./* ==========================================================================
   BOTONES PREMIUM (Estilo Tarjeta / Degradado)
   ========================================================================== */

/* Botón sólido (Registro) */
.btn-premium-registro {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #9b6dff, #7a46f2) !important;
    color: #ffffff !important;
    border-radius: 25px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(155, 109, 255, 0.3) !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Botón con borde (Ingresar) */
.btn-premium-borde {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: 1.5px solid #9b6dff !important;
    color: #9b6dff !important;
    border-radius: 25px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s;
}

.btn-premium-registro:hover, .btn-premium-borde:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}


/* Ajuste para que se vean bien en PC */
@media (min-width: 768px) {
    .btn-premium-registro, .btn-premium-borde {
        padding: 8px 18px !important;
        font-size: 13px !important;
    }
/* Asegúrate de que esta llave cierre el @media anterior */
} 

/* BOTÓN CONFIRMAR - Blindado */
.box-boton-confirmar {
    display: block !important;
    width: 100% !important;
    margin-top: 30px !important;
    padding: 0 !important;
}

.btn-confirmar-turno {
    display: flex !important;
    width: 100% !important;
    background-color: #9b6dff !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 15px 0 !important;
    font-size: 16px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    border: none !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    text-align: center !important;
}

.btn-confirmar-turno:hover {
    background-color: #8555e6 !important;
}