/* css/main.css */

/* ==========================================================================
   1. IMPORTACIÓN DE FUENTES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   2. DECLARACIÓN DE VARIABLES GLOBALES (:root)
   ========================================================================== */
:root {
  /* Fondos Estructurales (Modo Oscuro) */
  --bg-main: #03171C;         /* Negro: Fondo general de la página */
  --bg-dark: #03171C;         /* Fondo Oscuro: Para diferenciar secciones y menús */

  /* Textos y Lectura */
  --text-main: #FDF9F3;       /* Blanco Crema: Máximo contraste sobre fondos oscuros */
  --text-muted: #A3B8BC;      /* Gris Azulado: Para descripciones y atenuados */

  /* Colores de Identidad y Acentos */
  --primary: #147C8E;         /* Azul: Componentes, círculos de iconos e insignias */
  --primary-dark: #0F5A68;    /* Azul Oscuro: Para transiciones sutiles */
  --accent: #36BAF8;          /* Azul Claro: Estelar para Botones de Conversión (CTA) */
  --accent-hover: #09C0B7;    /* Hover de los botones */
  --green: #457145;           /* Verde: Para detalles muy específicos */
    
  /* Variables de Fuentes */
  --font-sans: 'Poppins', sans-serif;  
  --font-serif: 'Cardo', serif;        

  /* Escala Tipográfica Estándar */
  --fs-h1: 3rem;       
  --fs-h2: 2.25rem;    
  --fs-h3: 1.75rem;    
  --fs-h4: 1.25rem;    
  --fs-body: 1rem;     
  --fs-sm: 0.875rem;   
  --fs-xs: 0.75rem;    

  /* Variables de Estructura y Bordes */
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;
  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  /* Espaciados Estructurales Adaptativos */
  --container-max: 1200px;
  --space-section-y: clamp(4rem, 7vw, 8rem);     
  --space-container-x: clamp(1rem, 5vw, 2.5rem); 
  --space-grid-gap: 2rem;                        
}

/* ==========================================================================
   3. ESTILOS BASE Y RESETEO (Rendimiento y Accesibilidad)
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem; 
}

body {
    background-color: var(--bg-main); /* Aplicación del Negro Principal */
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: var(--fs-body);
    line-height: 1.6; 
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; 
}

img, video {
    max-width: 100%;
    height: auto;
    display: block; 
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

::-moz-selection { background-color: var(--accent); color: var(--bg-dark); }
::selection { background-color: var(--accent); color: var(--bg-dark); }

/* ==========================================================================
   4. CONFIGURACIÓN NATIVA DE TEXTOS, ENLACES Y HEADINGS
   ========================================================================== */
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--text-main); line-height: 1.2; }
h1 { font-size: var(--fs-h1); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: var(--fs-h3); font-weight: 600; }
h4 { font-size: var(--fs-h4); font-weight: 600; }

p { font-weight: 400; color: var(--text-main); margin-bottom: 1rem; }

a {
    font-family: var(--font-sans); font-size: var(--fs-sm); font-weight: 500;
    color: var(--text-muted); text-decoration: none; transition: var(--transition-smooth);
}
a:hover { color: var(--accent); }

/* ==========================================================================
   5. PLANTILLAS DE MAQUETACIÓN (Layout Scaffolding)
   ========================================================================== */
.section { padding-top: var(--space-section-y); padding-bottom: var(--space-section-y); position: relative; width: 100%; }
.container { width: 100%; max-width: var(--container-max); margin-left: auto; margin-right: auto; padding-left: var(--space-container-x); padding-right: var(--space-container-x); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: var(--space-grid-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-grid-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-grid-gap); }

.flex-row { display: flex; gap: var(--space-grid-gap); align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: var(--space-grid-gap); }
.flex-column { display: flex; flex-direction: column; gap: 1rem; }

.bg-cover-center { background-size: cover; background-position: center; background-repeat: no-repeat; }

/* ==========================================================================
   6. CLASES EDITORIALES, BOTONES Y NUEVO MENÚ DE NAVEGACIÓN
   ========================================================================== */
.title-narrative { font-family: var(--font-serif); font-weight: 400; font-style: italic; }
.eyebrow { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); display: block; margin-bottom: 0.5rem; }
.text-muted { color: var(--text-muted); font-size: var(--fs-sm); line-height: 1.5; }

/* Botones con fondo azul claro (Accent) y texto oscuro para contraste Google SEO */
.btn-primary {
    background-color: var(--accent); color: var(--bg-dark); padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full); font-family: var(--font-sans); font-size: var(--fs-sm);
    font-weight: 800; transition: var(--transition-smooth); display: inline-flex;
    align-items: center; gap: 0.5rem; border: none; cursor: pointer;
}
.btn-primary:hover { background-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(9, 192, 183, 0.2); color: var(--bg-dark); }

/* --- INICIO LÓGICA DEL MENÚ NATIVO CON HOVER --- */
.header-nav { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 80px; 
    z-index: 1000; 
    background-color: transparent; /* Empieza 100% transparente */
    border-bottom: 1px solid transparent; /* Sin línea divisoria al inicio */
    /* Transición suave para que el efecto glass no entre de golpe */
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

/* Esta es la clase dinámica que JavaScript activará al bajar */
.header-nav.scrolled {
    background: rgba(3, 23, 28, 0.85); 
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(253, 249, 243, 0.05); 
}



.header-container {
    width: 100%; height: 100%; display: flex; justify-content: space-between; align-items: center;
    padding-left: clamp(1.5rem, 8vw, 10rem); padding-right: clamp(1.5rem, 8vw, 10rem);
}

.logo-link { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }

/* ==========================================================================
   CORRECCIÓN: TAMAÑO DEL LOGO EN EL NAVBAR
   ========================================================================== */
.header-nav .logo-link img,
.nav-logo-img {
    height: 45px !important;  /* Forzamos la altura perfecta para la barra */
    width: auto !important;   /* Mantiene la proporción redonda sin deformar */
    max-height: 45px !important;
    object-fit: contain;
    flex-shrink: 0;          /* Evita que flexbox lo aplaste en pantallas chicas */
}



.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu-list { display: flex; gap: 2.5rem; list-style: none; align-items: center; margin: 0; padding: 0; }

.nav-link { 
    font-size: var(--fs-sm); font-weight: 500; color: var(--text-main); 
    transition: var(--transition-smooth); display: flex; align-items: center; 
    gap: 0.25rem; padding: 1.5rem 0; cursor: pointer;
}
.nav-link:hover { color: var(--accent); }

.nav-dropdown { position: relative; }

.dropdown-content {
    visibility: hidden; opacity: 0; position: absolute; top: 100%; left: 50%; 
    transform: translateX(-50%) translateY(10px); 
    background: var(--bg-dark); border: 1px solid rgba(253, 249, 243, 0.1); border-radius: var(--radius-lg);
    padding: 0.75rem; min-width: 260px; box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: flex; flex-direction: column; gap: 0.25rem; 
    pointer-events: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown-content::before { content: ''; position: absolute; top: -20px; left: 0; width: 100%; height: 20px; }
.nav-dropdown:hover .dropdown-content {
    visibility: visible; opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}

.dropdown-link { 
    font-size: var(--fs-sm); color: var(--text-main); font-weight: 500;
    padding: 0.75rem 1rem; border-radius: var(--radius-lg); transition: all 0.2s; 
}
.dropdown-link:hover { background-color: var(--primary); color: var(--text-main); padding-left: 1.25rem; }

.menu-toggle-btn { display: none; }
/* --- FIN LÓGICA DEL MENÚ NATIVO --- */


/* ==========================================================================
   7. OPTIMIZACIÓN MÓVIL Y MODOS DE PANTALLA (Media Queries)
   ========================================================================== */
@media (max-width: 768px) {
    :root {
        --fs-h1: 2.25rem; --fs-h2: 1.75rem; --fs-h3: 1.4rem; --fs-body: 0.938rem; 
        --space-grid-gap: 1.25rem; 
    }
    
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .flex-row, .flex-between { flex-direction: column; align-items: flex-start; width: 100%; }
    .flex-wrap-mobile { flex-direction: row !important; flex-wrap: wrap; }
    .text-center-mobile { text-align: center; }

    .menu-toggle-btn { 
        display: flex; background: none; border: none; cursor: pointer; 
        color: var(--text-main); z-index: 1001; 
    }

    .nav-wrapper {
        position: fixed;
        top: 80px; 
        left: -100%; 
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-dark); /* Menú móvil oscuro */
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .nav-wrapper.active { left: 0; }

    .nav-menu-list { flex-direction: column; width: 100%; gap: 0.5rem; align-items: flex-start; }
    .header-nav .btn-primary { width: 100%; justify-content: center; margin-top: 1rem; }

    .dropdown-content {
        position: static; transform: none; opacity: 1; visibility: visible;
        box-shadow: none; border: none; background: transparent;
        padding: 0 0 0 1rem; margin-top: 0; display: none; pointer-events: auto;
    }
    .nav-dropdown.active .dropdown-content { display: flex; }
}


/* ==========================================================================
   SELECTOR DE IDIOMAS (NAVBAR)
   ========================================================================== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1.5rem; /* Separa el selector del botón de reserva */
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.lang-item {
    color: var(--text-main);
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.3s ease, color 0.3s ease;
}

/* El idioma en el que está el usuario actualmente se ilumina en turquesa */
.lang-item.active {
    color: var(--accent);
    opacity: 1;
    cursor: default;
}

/* Efecto al pasar el mouse por el idioma alternativo */
a.lang-item:hover {
    opacity: 1;
    color: var(--text-main);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.2);
    user-select: none;
}

/* En celulares, el selector se acomoda dentro del menú desplegable */
@media (max-width: 992px) {
    .lang-switcher {
        margin-right: 0;
        margin-bottom: 1.5rem;
        justify-content: center;
    }
}

/* ==========================================================================
   9. SECCIÓN HERO (VIDEO BACKGROUND Y CONTENIDO)
   ========================================================================== */
.hero-section {
    position: relative; 
    height: 100vh; 
    min-height: 600px; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    overflow: hidden;
}
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-overlay {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    /* 1. Arriba (0%): 30% de opacidad para ver bien el video.
      2. Medio (60%): 70% de opacidad justo detrás de los textos para darles lectura.
      3. Abajo (100%): 100% Sólido (#03171C) para fusionarse con la sección de abajo.
    */
    background: linear-gradient(
        to bottom, 
        rgba(3, 23, 28, 0.3) 0%, 
        rgba(3, 23, 28, 0.7) 60%, 
        #03171C 100%
    ); 
    z-index: -1;
}
.hero-content {
    position: relative; 
    z-index: 1; 
    text-align: center; 
    color: var(--text-main);
    max-width: 900px; 
    padding: 0 var(--space-container-x); 
    display: flex; 
    flex-direction: column; 
    align-items: center;
    padding-top: 80px; 
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.35rem 1rem;
    border: 1px solid rgba(253, 249, 243, 0.2); border-radius: var(--radius-full);
    background: rgba(3, 23, 28, 0.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); margin-bottom: 1.5rem;
}
.hero-badge-dot { width: 6px; height: 6px; background-color: var(--green); border-radius: 50%; box-shadow: 0 0 8px var(--green); }
.hero-badge-text { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-main); }
.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--text-main); margin-bottom: 1.25rem; line-height: 1.1; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.hero-description { font-family: var(--font-sans); font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-muted); max-width: 700px; margin-bottom: 2.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.btn-ghost {
    background-color: rgba(253, 249, 243, 0.05); color: var(--text-main); padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full); font-family: var(--font-sans); font-size: var(--fs-sm); font-weight: 600;
    border: 1px solid rgba(253, 249, 243, 0.3); transition: var(--transition-smooth); display: inline-flex;
    align-items: center; gap: 0.5rem; cursor: pointer; backdrop-filter: blur(4px);
}
.btn-ghost:hover { background-color: var(--text-main); color: var(--bg-dark); border-color: var(--text-main); }

/* ==========================================================================
   10. CINTILLO DE HIGHLIGHTS (TRUST BADGES)
   ========================================================================== */
.trust-strip {
    background-color: var(--bg-dark); /* Fondo oscuro para dar profundidad */
    border-bottom: 1px solid rgba(253, 249, 243, 0.05);
    padding: 3rem 0; 
    position: relative;
    z-index: 2; 
}

.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; align-items: center; justify-items: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; transition: var(--transition-smooth); }
.trust-item:hover { transform: translateY(-3px); }
.trust-icon { font-size: 2.5rem; color: var(--accent); /* Iconos resaltan con Azul Claro */ }
.trust-text { font-family: var(--font-sans); font-size: var(--fs-sm); font-weight: 600; color: var(--text-main); line-height: 1.3; }

@media (max-width: 768px) {
    .trust-strip { padding: 2rem 0; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
    .trust-icon { font-size: 2rem; }
}

/* ==========================================================================
   11. SECCIÓN: FILOSOFÍA / POR QUÉ ELEGIRNOS
   ========================================================================== */
.philosophy-section { background-color: var(--bg-main); position: relative; } /* Fondo Negro Principal */

.philosophy-text { display: flex; flex-direction: column; justify-content: center; }
.philosophy-list { list-style: none; margin: 2.5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.philosophy-item { display: flex; align-items: flex-start; gap: 1.25rem; }

.philosophy-icon-circle {
    width: 48px; height: 48px;
    background-color: var(--primary); /* Azul principal unificado */
    border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center;
    color: var(--text-main); flex-shrink: 0; margin-top: 0.25rem; 
}

.philosophy-item-title { font-size: var(--fs-body); font-weight: 600; color: var(--text-main); margin-bottom: 0.25rem; }
.philosophy-item-desc { color: var(--text-muted); font-size: var(--fs-sm); margin: 0; }

.icon-filled { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

.philosophy-media { position: relative; display: flex; align-items: center; justify-content: center; }
.philosophy-img { border-radius: var(--radius-xl); width: 100%; height: 100%; object-fit: cover; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }

.testimonial-overlay {
    position: absolute; bottom: -2rem; right: 2rem;
    background-color: var(--bg-dark); padding: 2rem; border-radius: var(--radius-xl);
    width: 80%; box-shadow: 0 15px 35px rgba(0,0,0,0.4); border: 1px solid rgba(253, 249, 243, 0.1); z-index: 2;
}

@media (max-width: 768px) {
    .philosophy-media { order: -1; margin-bottom: 2rem; }
    .testimonial-overlay { position: static; width: 100%; right: 0; bottom: 0; margin-top: -1.5rem; padding: 1.5rem; }
}

/* ==========================================================================
   12. TARJETAS DE EXPERIENCIAS
   ========================================================================== */
.experiences-section { background-color: var(--bg-dark); } /* Fondo Oscuro alternativo para destacar */

.experience-card {
    position: relative; display: block; height: 480px; border-radius: var(--radius-xl);
    overflow: hidden; text-decoration: none; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.experience-card:hover .card-img { transform: scale(1.08); }

.card-badge {
    position: absolute; top: 1.5rem; left: 0;
    background-color: var(--primary); color: var(--text-main); font-family: var(--font-sans);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; padding: 0.4rem 1.25rem;
    border-radius: 0 var(--radius-full) var(--radius-full) 0; z-index: 3; box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.experience-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 60%;
    /* Degradado oscuro usando código transparente */
    background: linear-gradient(to top, rgba(3, 23, 28, 0.9), transparent); z-index: 1; pointer-events: none;
}

.card-overlay {
    position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
    background: rgba(3, 23, 28, 0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(253, 249, 243, 0.1); padding: 1.5rem; border-radius: var(--radius-lg); z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease;
}

.experience-card:hover .card-overlay {
    transform: translateY(-8px); background: rgba(3, 23, 28, 0.95); 
}

.card-title { font-family: var(--font-serif); font-size: var(--fs-h4); color: var(--text-main); margin-bottom: 0.5rem; }
.card-desc { font-family: var(--font-sans); font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.4; }

.card-link {
    font-family: var(--font-sans); font-size: 0.75rem; font-weight: 700;
    color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em;
    display: flex; align-items: center; gap: 0.5rem; transition: gap 0.3s ease;
}
.experience-card:hover .card-link { gap: 0.85rem; }

/* ==========================================================================
   13. DESTINOS DE LEYENDA CORREGIDO (COMPOSICIÓN DINÁMICA)
   ========================================================================== */
.section-destinos-leyenda {
    position: relative;
    padding: var(--space-section-y) 0;
    overflow: hidden; /* Evita scroll de los paneles desbordados */
    background-color: var(--bg-dark); /* Fondo oscuro */
    /* Fondo Inmersivo (como en FAQ/Extreme) */
    background-image: url('../fondos/fondo-destinos-inmersivo.webp');
    background-size: cover;
    background-position: center;
}

/* Capa de fusión superior e inferior (Seamless Blend) */
.section-destinos-leyenda::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Degradados de fusión arriba y abajo */
    background: 
        linear-gradient(to bottom, var(--bg-dark) 0%, transparent 15%),
        linear-gradient(to top, var(--bg-main) 0%, transparent 15%),
        rgba(3, 23, 28, 0.85); /* Tinte base */
    z-index: 1;
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2; /* Sobre los fondos y capas */
}

/* Texto Izquierdo (Mismo estilo) */
.destinos-text {
    max-width: 550px;
}

/* === NUEVA COMPOSICIÓN DINÁMICA DE IMÁGENES (REEMPLAZA CÍRCULO) === */
.destinos-dynamic-composition {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Paneles de Base (Formas y Overlap) */
.mask-panel, .glass-panel {
    position: absolute;
    /* Sombras agresivas para dar profundidad */
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    /* Todos los paneles tienen el contornoGlowing Cayan */
    border: 1px solid rgba(8, 228, 231, 0.3); /* Cayan Light sutil */
}

/* Efecto levitación interactiva al hover */
.destinos-dynamic-composition:hover .mask-panel, 
.destinos-dynamic-composition:hover .glass-panel {
    transform: translateY(-10px);
    transition: var(--transition-smooth);
}

/* Panel 2: Imagen Principal Maskeada (Forma Irregular) */
.image-panel {
    width: clamp(350px, 45%, 550px); /* Tamaño prominente */
    height: auto;
    left: 20%;
    top: -5%;
    z-index: 4; /* Sobre los demás paneles, pero debajo de la tarjeta central */
    /* Formas Irregulares (como en image_19.png) */
    clip-path: polygon(10% 0%, 100% 15%, 85% 100%, 0% 90%);
    border-radius: var(--radius-md); /* Pequeño redondeado sutil */
    overflow: hidden; /* Corta la imagen */
}

.dynamic-mask-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.3));
}

/* Fish de la foto original colocados estratégicamente */
.dynamic-png-fish-1, .dynamic-png-fish-2 {
    position: absolute;
    width: auto;
    height: auto;
    z-index: 5;
    pointer-events: none;
    transition: transform 0.4s ease;
}

.dynamic-png-fish-1 {
    height: 60px;
    left: 10%;
    top: 15%;
}

.dynamic-png-fish-2 {
    height: 40px;
    right: 10%;
    bottom: 20%;
}

.destinos-dynamic-composition:hover .dynamic-png-fish-1 { transform: translate(-10px, -10px); }
.destinos-dynamic-composition:hover .dynamic-png-fish-2 { transform: translate(10px, 10px); }

/* Paneles Translúcidos (Glassmorphism de image_21.png) */
.glass-panel {
    background: rgba(3, 23, 28, 0.5); /* Fondo oscuro con opacidad */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Panel Under (Debajo y a la Izquierda) */
.panel-underpanel {
    width: 300px;
    height: 350px;
    left: -10%; /* Se sale agresivamente del grid */
    top: 40%;
    z-index: 2; /* Debajo de todo */
    clip-path: polygon(0% 10%, 90% 0%, 100% 90%, 10% 100%);
    background: 
        linear-gradient(to right, rgba(8, 228, 231, 0.1) 0%, rgba(3, 23, 28, 0.5) 100%),
        rgba(3, 23, 28, 0.5); /* Con tinte cayan */
}

/* Panel Over (Arriba y a la Derecha, Overlapping) */
.panel-overpanel {
    width: 250px;
    height: 250px;
    right: -10%; /* Se sale agresivamente del grid */
    top: -15%;
    z-index: 6; /* Sobre todo, pisando el grid y el fondo inmersivo */
    clip-path: polygon(20% 0%, 100% 20%, 80% 100%, 0% 80%);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    background: 
        linear-gradient(to bottom, rgba(3, 23, 28, 0.6) 0%, rgba(8, 228, 231, 0.1) 100%),
        rgba(3, 23, 28, 0.5); /* Con tinte cayan */
}

/* === OPTIMIZACIÓN MÓVIL (Eliminar Zig-Zag para legibilidad) === */
@media (max-width: 992px) {
    .destinos-grid {
        grid-template-columns: 1fr; /* Una columna en móvil */
        gap: 3rem;
        text-align: center;
    }
    
    .destinos-text {
        max-width: 100%;
    }
    
    .destinos-dynamic-composition {
        min-height: auto;
        padding-top: 3rem;
    }
    
    .destinos-dynamic-composition .btn-primary {
        width: 100%; /* Botón ancho completo */
        justify-content: center;
    }
    
    .glass-panel { display: none; } /* Ocultar los paneles glass en móvil */
    
    .mask-panel, .image-panel {
        position: relative;
        left: 0 !important;
        top: 0 !important;
        width: 90%;
        margin: 0 auto;
        transform: translateY(-2rem); /* Pequeña levitación */
    }
}

/* ==========================================================================
   14. BANNER DE VIDEO SEPARADOR (SEAMLESS BLEND)
   ========================================================================== */
.video-banner-section {
    position: relative;
    height: 60vh; 
    min-height: 400px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark); 
}

/* El video de fondo */
.video-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Capa de fusión sin costuras (Degradado superior e inferior) */
.video-banner-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    z-index: 2; /* Sobre el video */
    pointer-events: none; /* Para no bloquear clics accidentalmente */
    
    /* El truco del degradado:
       1. Empieza con tu Fondo Oscuro (03171C)
       2. Se vuelve 100% transparente al 25% para dejar ver el centro del video
       3. Sigue transparente hasta el 75%
       4. Termina en tu Negro Principal (222221) para fusionarse con lo de abajo
    */
    background: linear-gradient(
        to bottom, 
        var(--bg-dark) 0%, 
        rgba(3, 23, 28, 0) 25%, 
        rgba(34, 34, 33, 0) 75%, 
        var(--bg-main) 100%
    );
}


/* ==========================================================================
   15. SLIDER DE CURSOS SDI (FONDO DE CORALES Y DOTS)
   ========================================================================== */
.sdi-slider-section {
    position: relative;
    padding: var(--space-section-y) 0;
    overflow: hidden;
    /* Imagen de fondo del componente completo */
    background-image: url('../img/fondos/school-fish-swimming-ocean-towards-sun.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Opcional: Da un efecto parallax sutil */
}

/* La capa muy ligera del color oscuro sobre la imagen y degradados en AMBOS extremos */
.sdi-slider-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    
    /* Múltiples fondos apilados */
    background: 
        linear-gradient(to bottom, var(--bg-dark) 0%, transparent 15%),
        linear-gradient(to top, var(--bg-main) 0%, transparent 15%),
        rgba(3, 23, 28, 0.90);
    
    z-index: 1;
}

.slider-wrapper {
    position: relative;
    width: 100%;
}

.sdi-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; 
    -ms-overflow-style: none;  
}

.sdi-slider-track::-webkit-scrollbar {
    display: none; 
}

.sdi-slide {
    min-width: 100%; 
    scroll-snap-align: start; 
    padding: 0 1rem;
}

.sdi-slide-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    
    background-color: transparent; 
    box-shadow: none;
    
    border-radius: var(--radius-xl);
    padding: 4rem;
    border: none;
}

.sdi-text-box h3 {
    font-size: var(--fs-h2);
    margin-bottom: 1rem;
    color: var(--text-main);
}

.sdi-media-box {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === NUEVO ESTILO DE FOTO RECTANGULAR === */
.sdi-photo {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(8, 228, 231, 0.2);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.sdi-slide:hover .sdi-photo {
    transform: translateY(-5px) scale(1.02); 
    border-color: var(--accent);
}

/* === DISEÑO DE LOS DOTS (PUNTITOS) === */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(9, 192, 183, 0.3); 
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent);
    transform: scale(1.3);
}

/* === ADAPTACIÓN PARA MÓVILES === */
@media (max-width: 992px) {
    .sdi-slide-content {
        grid-template-columns: 1fr; 
        padding: 2.5rem 2rem 4rem 2rem;
        gap: 2rem;
    }
    
    .sdi-text-box { order: 2; text-align: center; }
    .sdi-media-box { order: 1; min-height: auto; }
    
    /* Ajustes específicos de la foto en móvil */
    .sdi-photo { 
        max-height: 280px; 
    }
    
    .sdi-slide:hover .sdi-photo { 
        transform: translateY(-3px) scale(1.02); 
    }

    .slider-dots {
        right: 50%;
        transform: translateX(50%);
        bottom: 1.5rem;
    }
}


/* ==========================================================================
   16. EXPERIENCIAS VIP EXTREME (DISEÑO INMERSIVO CAPAS)
   ========================================================================== */
.vip-extreme-section {
    position: relative;
    /* Mantenemos el fondo de corales y peces que definimos antes */
    padding: var(--space-section-y) 0;
    overflow: hidden; /* Vital para que el texto vectorial gigante no cree scroll horizontal */
    display: flex;
    align-items: center;
}

/* El texto vectorial gigante del fondo (Outline) */
.extreme-outline-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-sans);
    font-weight: 900;
    font-size: 30vw; /* Tamaño responsivo enorme basado en el ancho de la pantalla */
    line-height: 1;
    color: transparent; /* El interior es transparente */
    /* Este es el truco del Outline (borde vectorial) */
    -webkit-text-stroke: 2px rgba(253, 249, 243, 0.1); /* Texto Principal (#FDF9F3) con opacidad */
    text-shadow: none;
    z-index: 1; /* Al fondo de todo el contenido */
    pointer-events: none; /* No interfiere con clics */
    white-space: nowrap;
}

/* Contenedor principal para alienar el contenido */
.vip-content-wrapper {
    position: relative;
    z-index: 2; /* Por encima del texto vectorial */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Subtítulo superior (Editorial Serif) */
.subtitle-serif {
   font-family: var(--font-serif);
    font-size: var(--fs-h2);
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 4rem;
    text-align: center;
    z-index: 4;
}

/* Rejilla de tarjetas (Flexbox para control total de posiciones) */
.vip-grid {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem; /* Pequeño espacio base */
}

/* Tarjetas de Experiencias VIP (Glassmorphism) */
.vip-card {
    background: rgba(3, 23, 28, 0.5); /* Fondo oscuro con opacidad */
    backdrop-filter: blur(10px); /* Efecto cristal desenfocado */
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(253, 249, 243, 0.08); /* Borde sutil */
    text-decoration: none;
    width: calc(30% - 1rem); /* Ancho aproximado en escritorio */
    transition: var(--transition-smooth);
    z-index: 3; /* Sobre la fauna y el texto vectorial */
}

/* Efecto hover en las tarjetas */
.vip-card:hover {
    transform: translateY(-5px);
    background: rgba(3, 23, 28, 0.7);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.vip-card-title {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.vip-card-desc {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Enlace dentro de la tarjeta */
.vip-card-link {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--accent); /* Azul Claro (#09C0B7) */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Posiciones específicas para replicar el "Zig-Zag" de la imagen */
.vip-card-1 { margin-top: 5rem; } /* Más baja */
.vip-card-2 { margin-top: 0; }     /* En medio */
.vip-card-3 { margin-top: 8rem; } /* La más baja */

/* Imágenes de Fauna (PNG sobrepuestos) */
.fauna-png {
    position: absolute;
    width: auto;
    height: auto;
    z-index: 2; /* Por debajo de las tarjetas (3), pero sobre el texto vectorial (1) */
    pointer-events: none;
    /* Sombra agresiva para proyectar volumen y profundidad */
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6));
    transition: var(--transition-smooth);
}

/* Posiciones exactas de la fauna basándonos en la referencia */
.fauna-pez-leon {
    height: 180px;
    left: 10%;
    top: -50px; /* Se sale un poco por arriba de la tarjeta 1 */
    z-index: 4;
}

.fauna-tiburon {
    height: 250px;
    right: 5%;
    top: -98px; /* Pasa por encima de la tarjeta 3 */
    z-index: 4;
}

/* Pequeña animación al mover el ratón por la sección */
.vip-extreme-section:hover .fauna-pez-leon { transform: scale(1.05) translate(-10px, -10px); }
.vip-extreme-section:hover .fauna-tiburon { transform: scale(1.05) translate(10px, 10px); }

/* Botón CTA Principal Estilo Cápsula Glowing */
.btn-vip-capsule {
    background-color: transparent;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.85rem 3rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(253, 249, 243, 0.3);
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
    /* El efecto glowing (brillo) sutil */
    box-shadow: 0 0 15px rgba(9, 192, 183, 0.2); 
}

.btn-vip-capsule:hover {
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(9, 192, 183, 0.4);
    transform: translateY(-2px);
}

/* Optimización para móviles */
@media (max-width: 992px) {
    .vip-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .vip-card {
        width: 100%;
        max-width: 400px;
        margin-top: 0 !important; /* Quitamos el zig-zag en móvil */
        text-align: center;
    }
    
    .vip-card-link { justify-content: center; }

    /* Ajuste de la fauna en móvil: reducimos tamaño y reposicionamos */
    .fauna-png {
        position: relative; /* Ya no son absolutas */
        display: block;
        margin: 0 auto;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    .fauna-pez-leon { order: 1; height: 120px; }
    .vip-card-1 { order: 2; }
    .fauna-tiburon { order: 3; height: 100px; margin-top: 1rem; }
    .vip-card-2 { order: 4; }
    .vip-card-3 { order: 5; }
    
    .extreme-outline-text {
        font-size: 20vw;
    }
}


/* ==========================================================================
   17. SLIDER DE RESEÑAS GOOGLE (GLASSMORPHISM)
   ========================================================================== */
/* ==========================================================================
   17. SLIDER DE RESEÑAS GOOGLE (GLASSMORPHISM + FONDO INMERSIVO)
   ========================================================================== */
.reviews-slider-section {
    padding: var(--space-section-y) 0;
    position: relative;
    overflow: hidden;
    
    /* 👇 PON AQUÍ LA RUTA DE TU NUEVA IMAGEN DE FONDO 👇 */
    background-image: url('../img/fondos/tiburon.webp'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto parallax */
}

/* Capa oscura para oscurecer la imagen y que el texto se lea perfecto */
/* Capa oscura para la imagen con bordes difuminados (Seamless Blend) */
.reviews-slider-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    
    /* Múltiples fondos:
       1. Degradado superior (fusiona el corte de arriba)
       2. Degradado inferior (fusiona el corte de abajo)
       3. Capa general transparente para que el texto resalte
    */
    background: 
        linear-gradient(to bottom, var(--bg-dark) 0%, transparent 15%),
        linear-gradient(to top, var(--bg-dark) 0%, transparent 15%),
        rgba(3, 23, 28, 0.85);
        
    z-index: 1;
}

/* Asegura que todo el contenido quede por encima de la capa oscura */
.reviews-slider-section .container {
    position: relative;
    z-index: 2;
}

.reviews-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 4rem; /* Espacio para las flechas en escritorio */
}

/* Contenedor del Track */
.reviews-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Ocultar barra en Firefox */
    -ms-overflow-style: none;  /* Ocultar barra en IE/Edge */
    gap: 1.5rem; /* Espacio entre tarjetas */
    width: 100%;
    padding-bottom: 2rem; /* Espacio para la sombra */
}

.reviews-track::-webkit-scrollbar {
    display: none; /* Ocultar barra en Chrome/Safari */
}

/* Cada Slide (Controla cuántas tarjetas se ven) */
.review-slide {
    /* Muestra 3 tarjetas en escritorio restando el gap proporcional */
    min-width: calc(33.333% - 1rem); 
    scroll-snap-align: start;
    display: flex;
}

/* Tarjeta Glassmorphism (Sin brillo exagerado) */
/* Tarjeta Glassmorphism */
.glass-review-card {
    background: rgba(3, 23, 28, 0.5); /* Transparencia sutil */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(8, 228, 231, 0.2); 
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    /* Quitamos el transform y dejamos solo color y sombra en la transición */
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* NUEVO HOVER: Se ilumina sutilmente sin moverse */
.glass-review-card:hover {
    background: rgba(8, 228, 231, 0.08); /* Tinte turquesa tenue en el fondo */
    border-color: rgba(8, 228, 231, 0.7); /* Borde más encendido */
    box-shadow: 0 0 25px rgba(8, 228, 231, 0.15); /* Resplandor suave */
}

/* Estrellas (Turquesa/Cayan como en tu imagen) */
.review-stars {
    color: var(--accent); /* Cayan Light */
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Texto de la Reseña (Tipografía Serif como en la imagen) */
.review-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
    text-align: center;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1; /* Empuja el footer hacia abajo */
}

/* Footer de la tarjeta */
.review-footer {
    display: flex;
    justify-content: center; /* Centrar elementos */
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(253, 249, 243, 0.1);
}

.reviewer-name {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.google-logo {
    width: 20px;
    opacity: 0.8;
}

/* === CONTROLES DEL SLIDER === */

/* Flechas de Navegación */
.review-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: transparent;
    color: var(--accent); /* Color Cayan */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.review-nav-btn:hover {
    color: var(--text-main);
}

.review-nav-btn .material-symbols-outlined {
    font-size: 2rem; /* Flechas grandes como en tu imagen */
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

/* Dots (Puntos inferiores) */
.review-dots {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(8, 228, 231, 0.3); /* Cayan apagado */
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    background-color: var(--accent);
    width: 20px; /* Dot activo alargado */
    border-radius: 4px;
}

/* === RESPONSIVO PARA MÓVILES === */
@media (max-width: 992px) {
    .reviews-slider-wrapper {
        padding: 0; /* Quitar padding lateral para aprovechar pantalla */
    }

    .review-slide {
        min-width: 100%; /* 1 tarjeta por pantalla en móvil */
    }

    /* Ocultar flechas en móvil, forzar uso de touch/swipe */
    .review-nav-btn {
        display: none;
    }
}


/* ==========================================================================
   18. SECCIÓN FAQ (ACORDEÓN GLASSMORPHISM)
   ========================================================================== */
.faq-section {
    position: relative;
    padding: var(--space-section-y) 0;
    /* Fondo Inmersivo */
    background-color: transparent;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Capa de oscuridad y fusión (Seamless Blend) */
.faq-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Degradados para fusionar con secciones superior e inferior */
    background: 
        linear-gradient(to bottom, var(--bg-dark) 0%, transparent 15%),
        linear-gradient(to top, var(--bg-main) 0%, transparent 15%),
        rgba(3, 23, 28, 0.85); /* Tinte oscuro base */
    z-index: 1;
}

/* Texto FAQ gigante de fondo */
.faq-bg-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -5%;
    font-size: 40vw; /* Ajustado para que sea más grande */
    font-family: var(--font-sans);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(253, 249, 243, 0.05);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

/* PNGs Decorativos (Esquinas) */
.faq-decor {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.faq-decor-tr {
    top: -50px;
    right: -30px;
    width: 300px;
}

.faq-decor-bl {
    bottom: -50px;
    left: -30px;
    width: 350px;
}

.faq-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto; /* Asegura el centrado */
}

/* Título con Icono del Tiburón */
.faq-header-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative; /* Importante para el posicionamiento absoluto del tiburón */
}

.faq-header-wrapper h2 {
    font-family: var(--font-serif);
    font-size: var(--fs-h2);
    color: var(--text-main);
    /* Línea decorativa superior */
    position: relative;
    padding-top: 1.5rem;
}

.faq-header-wrapper h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent); /* Cayan Light */
}

/* Icono del Tiburón: Tu código + Animación */
.faq-title-icon {
    height: 243px;
    width: auto;
    position: absolute;
    right: -80px;
    top: -80px; /* Ajuste para que se vea sobre el título */
    z-index: 5;
    /* Animación de natación en bucle */
    animation: swim 4s ease-in-out infinite alternate;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
}

/* Interacción Hover del Tiburón */
.faq-title-icon:hover {
    transform: scale(1.1) rotate(-5deg); /* Efecto al pasar el mouse */
    animation-play-state: paused; /* Pausa la natación al hacer hover */
    cursor: pointer;
}

/* Animación Keyframes */
@keyframes swim {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(2deg); }
}

/* Estilos del Acordeón */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Gap reducido */
}

.faq-item {
    background: rgba(3, 23, 28, 0.4); /* Fondo más oscuro y translúcido */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 228, 231, 0.2); /* Borde sutil Cayan Light */
    border-radius: var(--radius-md); /* Bordes menos redondeados */
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Estado Activo del Item */
.faq-item.active {
    background: rgba(253, 249, 243, 0.05); /* Ligeramente más claro */
    border-color: rgba(8, 228, 231, 0.5); /* Borde más visible */
    box-shadow: 0 0 15px rgba(8, 228, 231, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.4s ease;
    font-family: monospace; /* Para un '+' más limpio */
    font-weight: bold;
}

/* Respuesta (Oculta por defecto) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    padding: 0 2rem;
    opacity: 0;
}

/* Mostrar Respuesta al estar activo */
.faq-item.active .faq-answer {
    max-height: 300px; /* Altura suficiente para el contenido */
    padding-bottom: 1.5rem;
    opacity: 1;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
    border-top: 1px solid rgba(253, 249, 243, 0.1); /* Línea separadora sutil */
    padding-top: 1rem;
}

/* Responsivo */
@media (max-width: 992px) {
    .faq-title-icon {
        position: relative;
        right: 0;
        top: 0;
        height: 120px;
        margin: 0 auto;
        display: block;
    }
    .faq-header-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .faq-header-wrapper h2::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   19. QUIENES SOMOS (SOBRE NOSOTROS) - REDISEÑO PREMIUM
   ========================================================================== */
.about-section {
    position: relative;
    padding: var(--space-section-y) 0;
    overflow: hidden;
    /* Fondo inmersivo profundo */
    background-image: url('../img/fondos/fondo-destinos-inmersivo.webp'); 
    background-size: cover;
    background-position: center;
}

/* Fusión suave superior e inferior (Seamless Blend) */
.about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        linear-gradient(to bottom, var(--bg-dark) 0%, transparent 15%),
        linear-gradient(to top, var(--bg-dark) 0%, transparent 15%),
        rgba(3, 23, 28, 0.85); /* Oscurece el fondo para que el texto resalte */
    z-index: 1;
}

.about-container {
    position: relative;
    z-index: 2;
    gap: 4rem; /* Separación entre la foto y el texto */
}

/* === COLUMNA IZQUIERDA: FOTO Y CITA === */
.about-visuals-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem; /* Espacio para que la tarjeta flotante no se corte */
}

/* Imagen Principal con marco de diseño */
.about-main-image {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(8, 228, 231, 0.3); /* Borde Cayan Light */
    box-shadow: 0 20px 50px rgba(0,0,0,0.6); /* Sombra agresiva de profundidad */
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease, border-color 0.4s ease;
    
}

.about-main-image:hover {
    transform: translateY(-10px); /* Levitación al pasar el mouse */
    border-color: var(--accent);
}

.about-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Tarjeta de Cita Flotante (Glassmorphism) */
.about-floating-quote {
    position: absolute;
    bottom: 0;
    right: -10%; /* Hace que sobresalga de la foto hacia el texto */
    width: 280px;
    background: rgba(3, 23, 28, 0.6); /* Fondo oscuro translúcido */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(8, 228, 231, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-floating-quote:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.quote-icon {
   color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
    
    /* 👇 ESTA LÍNEA RELLENA LAS COMILLAS POR COMPLETO 👇 */
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.about-floating-quote p {
    font-family: var(--font-serif); /* Tipografía elegante para la cita */
    font-style: italic;
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
}

/* === COLUMNA DERECHA: TEXTO === */
.about-text-content {
    max-width: 550px;
}

/* Título */
.about-heading {
    font-family: var(--font-serif);
    font-size: var(--fs-h2);
    color: var(--text-main);
    margin-bottom: 2rem;
    margin-top: 1rem;
    position: relative;
    padding-top: 1.5rem;
}

/* Línea superior decorativa del título */
.about-heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.about-desc {
    color: var(--text-muted);
    font-family: var(--font-sans);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* === OPTIMIZACIÓN MÓVIL === */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-visuals-wrapper {
        padding-bottom: 3rem;
    }

    .about-main-image {
        max-width: 90%;
    }
    
    /* Centramos la tarjeta flotante en móviles */
    .about-floating-quote {
        right: 50%;
        transform: translateX(50%);
        bottom: -20px;
        width: 85%;
        text-align: center;
    }
    
    .about-floating-quote:hover {
        transform: translateX(50%) translateY(-5px);
    }
    
    .quote-icon {
        margin: 0 auto 0.5rem auto;
    }
    
    .about-heading::before {
        left: 50%;
        transform: translateX(-50%);
    }
}


/* ==========================================================================
   20. SECCIÓN PRECIOS Y TARIFAS (4 TABS + FONDOS OVERLAY)
   ========================================================================== */
.pricing-section {
    padding: var(--space-section-y) 0;
    background-color: var(--bg-main);
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-family: var(--font-serif);
    font-size: var(--fs-h2);
    color: var(--text-main);
    margin: 0.5rem 0 1rem;
}

/* Selector de Pestañas (Tabs) */
.pricing-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Importante para que no se rompan en móvil */
    gap: 0.5rem;
    margin-bottom: 4rem;
    background: rgba(253, 249, 243, 0.05);
    padding: 0.5rem;
    border-radius: var(--radius-full);
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(253, 249, 243, 0.1);
}

.tab-btn {
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    color: var(--text-main);
}

.tab-btn.active {
    background-color: rgba(3, 23, 28, 0.8);
    color: var(--accent); /* Cayan Light */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(8, 228, 231, 0.2);
}

/* Contenedores de Contenido y Animación */
.pricing-content {
    display: none; 
    animation: fadeIn 0.5s ease;
}

.pricing-content.active {
    display: block; 
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Rejilla de Tarjetas (Default: 3 columnas) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center; 
}

/* Variación específica para Snorkel (2 columnas centradas) */
.snorkel-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

/* === TARJETA INDIVIDUAL (GLASS + IMAGEN DE FONDO + OVERLAY) === */
.glass-pricing-card {
    background-color: var(--bg-dark); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(253, 249, 243, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    /* QUITAMOS EL overflow: hidden; PARA QUE LA ETIQUETA NO SE CORTE */
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Overlay Oscuro Inteligente (Degradado) */
.glass-pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* 75% opaco arriba (deja ver un poco) a 95% oscuro abajo (legibilidad total) */
    background: linear-gradient(to bottom, rgba(3, 23, 28, 0.75) 0%, rgba(3, 23, 28, 0.95) 100%);
    z-index: 1; 
    transition: background 0.4s ease;
    border-radius: inherit; /* ESTO HACE QUE EL OVERLAY RESPETE LAS CURVAS */
}

/* Mantener todo el contenido (texto y botones) por encima del Overlay */
.glass-pricing-card > * {
    position: relative;
    z-index: 2; 
}

/* Hover de la Tarjeta normal */
.glass-pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 228, 231, 0.4); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* Al hacer hover, aclaramos MUY poco el overlay para revelar la imagen, pero protegiendo el texto */
.glass-pricing-card:hover::before {
    background: linear-gradient(to bottom, rgba(3, 23, 28, 0.6) 0%, rgba(3, 23, 28, 0.9) 100%);
}

/* Tarjeta Destacada (Más Popular) */
.glass-pricing-card.popular {
    border-color: rgba(8, 228, 231, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(8, 228, 231, 0.15);
    transform: scale(1.05); 
    z-index: 10;
}

.glass-pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--accent);
}

/* Badge Superior */
.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent); /* Cayan */
    color: var(--bg-dark);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(8, 228, 231, 0.3);
    z-index: 3; /* Sobre el overlay */
}

/* Tipografía de la tarjeta */
.pricing-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 500;
}

.pricing-price {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.pricing-price .currency {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-muted);
}

/* Micro-copy Tags */
.pricing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-transform: uppercase;
}

.tag .material-symbols-outlined { font-size: 12px; }

.tag-cert { background: rgba(231, 76, 60, 0.15); color: #e74c3c; border: 1px solid rgba(231, 76, 60, 0.3); }
.tag-daily { background: rgba(8, 228, 231, 0.1); color: var(--accent); border: 1px solid rgba(8, 228, 231, 0.2); }
.tag-weather { background: rgba(24, 139, 220, 0.15); color: #188bdc; border: 1px solid rgba(24, 139, 220, 0.3); }
.tag-limit { background: rgba(253, 249, 243, 0.1); color: var(--text-muted); }

/* Características */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1; /* Empuja los botones hacia abajo */
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.4;
}

.pricing-features .check {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Botones y Enlaces */
.pricing-actions {
    text-align: center;
}

.pricing-sublink {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.pricing-sublink:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Optimización Móvil */
@media (max-width: 992px) {
    .pricing-grid, 
    .snorkel-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 3rem;
    }

    .glass-pricing-card.popular {
        transform: scale(1); /* Quitamos el scale en móvil */
    }
    
    .glass-pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .pricing-tabs {
        flex-direction: column;
        border-radius: var(--radius-md);
    }
    
    .tab-btn {
        width: 100%;
    }
}



/* ==========================================================================
   21. FOOTER PREMIUM
   ========================================================================== */
.site-footer {
    position: relative;
    background-color: var(--bg-main);
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto parallax sutil */
    padding-top: 6rem;
    color: var(--text-main);
}

/* Overlay inteligente para fusionar secciones y oscurecer el fondo */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, var(--bg-main) 0%, rgba(3, 23, 28, 0.95) 15%, rgba(3, 23, 28, 0.98) 100%);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
}

/* Rejilla de 4 columnas */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr; /* La primera columna es un poco más ancha */
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(253, 249, 243, 0.1); /* Línea divisoria sutil */
}

/* Tipografía y Estilos Comunes */
.footer-heading {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

/* Columna 1: Marca */
.footer-logo {
    height: 40px; /* Ajusta según tu logo */
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(253, 249, 243, 0.05);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    transition: var(--transition-smooth);
    border: 1px solid rgba(253, 249, 243, 0.1);
}

.social-icon:hover {
    background: var(--accent); /* Cayan */
    color: var(--bg-dark);
    transform: translateY(-3px);
    border-color: var(--accent);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* Columna 2: Enlaces */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent); /* Cayan */
}

/* Columna 3: Contacto */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-info .icon {
    color: var(--accent); /* Cayan */
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-info a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--accent);
}

/* Columna 4: Mapa */
.footer-map-wrapper {
    width: 100%;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(8, 228, 231, 0.2); /* Borde Cayan tenue */
    background: rgba(3, 23, 28, 0.5); /* Glassmorphism de respaldo */
}

.footer-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.footer-map-wrapper:hover .footer-map-img {
    opacity: 1;
    transform: scale(1.05); /* Zoom sutil en el mapa al hacer hover */
}

.footer-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.footer-directions-link:hover {
    color: var(--text-main);
}

.footer-directions-link .material-symbols-outlined {
    font-size: 1.1rem;
}

/* Barra Inferior */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--text-main);
}

/* Optimización Móvil */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablet */
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* 1 columna en móvil */
        gap: 2.5rem;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .legal-links {
        justify-content: center;
    }
}




/* ==========================================================================
   22. BOTÓN FLOTANTE WHATSAPP (CON BURBUJAS DE BUCEO)
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

/* Tooltip (Globo de texto estilo Premium) */
.whatsapp-tooltip {
    background: rgba(3, 23, 28, 0.85); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-main);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(8, 228, 231, 0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(8, 228, 231, 0.5);
}

/* Círculo del botón adaptado a la paleta de la marca */
.whatsapp-icon {
    position: relative; /* Necesario para que las burbujas floten desde aquí */
    background-color: var(--accent); /* Cayan/Turquesa */
    color: #ffffff; /* Ícono en blanco */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(8, 228, 231, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-brand 2s infinite; 
}

.whatsapp-icon svg {
    width: 35px;
    height: 35px;
    position: relative;
    z-index: 2; /* Mantiene el ícono por encima de las burbujas */
}

/* === INTERACCIONES HOVER PRINCIPALES === */
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1); 
    box-shadow: 0 15px 25px rgba(8, 228, 231, 0.5);
    animation-play-state: paused;
}

@keyframes pulse-brand {
    0% { box-shadow: 0 0 0 0 rgba(8, 228, 231, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(8, 228, 231, 0); }
    100% { box-shadow: 0 0 0 0 rgba(8, 228, 231, 0); }
}

/* ==========================================================================
   SISTEMA DE BURBUJAS DE BUCEO (ZIG-ZAG)
   ========================================================================== */
.whatsapp-bubbles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Estructura base de las burbujas con efecto 3D */
.bubble {
    position: absolute;
    bottom: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(253, 249, 243, 0.6); /* Borde blanco translúcido */
    /* Resplandor interno sutil para hacerlas parecer de cristal/aire */
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(8, 228, 231, 0.1));
    opacity: 0;
    transform: translate(-50%, -50%);
}

/* Activación de las burbujas SOLO al hacer hover en el botón */
.whatsapp-float:hover .bubble-1 { animation: rise-wobble-1 2.5s infinite ease-in; animation-delay: 0s; width: 10px; height: 10px; }
.whatsapp-float:hover .bubble-2 { animation: rise-wobble-2 2.2s infinite ease-in; animation-delay: 0.4s; width: 14px; height: 14px; }
.whatsapp-float:hover .bubble-3 { animation: rise-wobble-1 2.8s infinite ease-in; animation-delay: 0.8s; width: 8px; height: 8px; }
.whatsapp-float:hover .bubble-4 { animation: rise-wobble-2 2.4s infinite ease-in; animation-delay: 1.2s; width: 12px; height: 12px; }

/* Animación de Zig-Zag 1 (Burbujas pequeñas) */
@keyframes rise-wobble-1 {
    0% { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
    10% { opacity: 0.8; transform: translate(calc(-50% - 8px), -15px) scale(0.7); }
    50% { opacity: 0.6; transform: translate(calc(-50% + 10px), -45px) scale(1); }
    100% { opacity: 0; transform: translate(calc(-50% - 12px), -90px) scale(1.2); }
}

/* Animación de Zig-Zag 2 (Burbujas grandes, diferente dirección) */
@keyframes rise-wobble-2 {
    0% { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
    10% { opacity: 0.8; transform: translate(calc(-50% + 8px), -20px) scale(0.8); }
    50% { opacity: 0.6; transform: translate(calc(-50% - 12px), -55px) scale(1); }
    100% { opacity: 0; transform: translate(calc(-50% + 15px), -100px) scale(1.3); }
}

/* === OPTIMIZACIÓN MÓVIL === */
@media (max-width: 768px) {
    .whatsapp-float { bottom: 20px; right: 20px; }
    .whatsapp-icon { width: 50px; height: 50px; }
    .whatsapp-icon svg { width: 30px; height: 30px; }
    .whatsapp-tooltip { display: none; }
    
    /* En móviles, activamos las burbujas automáticamente aunque no haya hover (opcional) */
    .bubble-1 { animation: rise-wobble-1 3s infinite ease-in; animation-delay: 0s; width: 8px; height: 8px; }
    .bubble-2 { animation: rise-wobble-2 2.8s infinite ease-in; animation-delay: 0.7s; width: 12px; height: 12px; }
    .bubble-3 { display: none; } /* Reducimos burbujas en móvil por rendimiento */
    .bubble-4 { display: none; }
}

/* ==========================================================================
   23. SECCIÓN DE CONTACTO Y FORMULARIO
   ========================================================================== */
.contact-section {
    position: relative;
    padding: var(--space-section-y) 0;
    background-color: var(--bg-dark);
    background-size: cover;
    background-position: center;
}

/* Fusión suave con la sección superior (Seamless Blend) */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        linear-gradient(to bottom, var(--bg-main) 0%, transparent 15%),
        rgba(3, 23, 28, 0.85); /* Tinte oscuro base para legibilidad */
    z-index: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Esto fuerza las 2 columnas iguales */
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 4rem;
}

/* Columna Izquierda: Información */
.contact-info {
    max-width: 500px;
}

.contact-info h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.quick-contact {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.qc-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.qc-icon {
    color: var(--accent);
    background: rgba(8, 228, 231, 0.1);
    padding: 10px;
    border-radius: 50%;
    font-size: 1.5rem;
    border: 1px solid rgba(8, 228, 231, 0.2);
}

.qc-item strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 0.3rem;
    font-family: var(--font-sans);
}

.qc-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Columna Derecha: Contenedor del Formulario */
.contact-form-wrapper {
    background: rgba(3, 23, 28, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(8, 228, 231, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Estilos de los inputs, select y textarea */
.bucaneros-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
}

.bucaneros-form input,
.bucaneros-form select,
.bucaneros-form textarea {
    background: rgba(253, 249, 243, 0.05); /* Fondo casi transparente */
    border: 1px solid rgba(253, 249, 243, 0.15);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.bucaneros-form input::placeholder,
.bucaneros-form textarea::placeholder {
    color: rgba(253, 249, 243, 0.4);
}

/* Estado activo (Focus) - Brillo Turquesa */
.bucaneros-form input:focus,
.bucaneros-form select:focus,
.bucaneros-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(3, 23, 28, 0.8);
    box-shadow: 0 0 15px rgba(8, 228, 231, 0.15);
}

/* Estilos específicos para el Select (Dropdown) */
.bucaneros-form select {
    appearance: none; /* Quita la flecha por defecto del navegador */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2308e4e7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    cursor: pointer;
}

/* Las opciones dentro del select necesitan fondo oscuro para verse bien */
.bucaneros-form select option {
    background-color: var(--bg-dark);
    color: var(--text-main);
    padding: 10px;
}

.bucaneros-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Optimización Móvil */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        text-align: center;
        margin: 0 auto;
    }
    
    .quick-contact {
        align-items: center;
    }
    
    .qc-item {
        text-align: left; /* Mantiene el texto alineado junto a su icono */
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}





/* ==========================================================================
   25. SECCIÓN DE BLOG / BITÁCORA
   ========================================================================== */
.blog-section {
    padding: var(--space-section-y) 0;
    background-color: var(--bg-main);
    position: relative;
}

/* Grid del Blog (3 Columnas) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Tarjeta Individual Glassmorphism */
.glass-blog-card {
    background: rgba(3, 23, 28, 0.4);
    border: 1px solid rgba(8, 228, 231, 0.15); /* Borde sutil cayan */
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(8, 228, 231, 0.5);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 15px rgba(8, 228, 231, 0.1);
}

/* Contenedor de la Imagen */
.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.glass-blog-card:hover .blog-image-wrapper img {
    transform: scale(1.08); /* Zoom in al hacer hover */
}

/* Etiqueta Flotante de Categoría */
.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent); /* Turquesa/Cayan */
    color: var(--bg-dark);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Contenido de Texto */
.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
    display: block;
}

.blog-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.glass-blog-card:hover .blog-title {
    color: var(--accent);
}

.blog-excerpt {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1; /* Empuja el botón hacia abajo para que todos queden alineados */
}

/* Enlace "Leer Artículo" */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.blog-read-more .material-symbols-outlined {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: var(--accent);
}

.glass-blog-card:hover .blog-read-more .material-symbols-outlined {
    transform: translateX(5px); /* La flecha se mueve a la derecha sutilmente */
}

/* ==========================================================================
   OPTIMIZACIÓN MÓVIL
   ========================================================================== */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablet */
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr; /* 1 columna en celulares */
        gap: 2rem;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .blog-image-wrapper {
        height: 250px; /* Imagen un poco más alta en móviles */
    }
}


/* ==========================================================================
   26. BARRA DE VALOR INFINITA (TICKER)
   ========================================================================== */
.value-ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: rgba(3, 23, 28, 0.98); /* Azul oscuro corporativo profundo */
    border-top: 1px solid rgba(8, 228, 231, 0.1);
    border-bottom: 1px solid rgba(8, 228, 231, 0.1);
    padding: 0.8rem 0;
    position: relative;
    z-index: 10;
    display: flex;
}

/* La pista que contiene todos los elementos y se anima */
.value-ticker-track {
    display: flex;
    white-space: nowrap;
    width: max-content; /* Permite que el contenedor crezca según el texto */
    animation: ticker-scroll 35s linear infinite;
}

/* Pausar la animación si el usuario pasa el mouse (Opcional pero recomendado para UX) */
.value-ticker-wrap:hover .value-ticker-track {
    animation-play-state: paused;
}

/* Estilos de cada ítem */
.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 1rem; /* Espaciado ajustado */
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    letter-spacing: 0.05em;
}

/* Íconos en Turquesa/Cayan para mantener la marca */
.ticker-icon {
    color: var(--accent); 
    font-size: 1.3rem;
    margin-right: 0.8rem;
}

/* El punto separador */
.ticker-dot {
    color: rgba(253, 249, 243, 0.3); /* Blanco/Arena muy tenue */
    margin-left: 2rem;
    font-size: 1.2rem;
    line-height: 1;
}

/* Animación del Bucle */
@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Se desplaza exactamente la mitad (porque el grupo 1 y 2 miden lo mismo) */
        transform: translateX(-50%);
    }
}

/* Optimización para dispositivos muy anchos (Pantallas 4K) */
@media (min-width: 2000px) {
    .value-ticker-track {
        /* Si la pantalla es gigante, hacemos que corra un poco más lento */
        animation-duration: 45s; 
    }
}

/* ==========================================================================
   27. CTA PARA CRUCERISTAS (PANTALLA DIVIDIDA)
   ========================================================================== */
.cruise-cta-section {
    background-color: var(--bg-main); /* Fondo Navy/Oscuro */
    position: relative;
    overflow: hidden;
    padding: 0; /* Quitamos el padding para que la imagen toque los bordes */
    margin: var(--space-section-y) 0;
    border-top: 1px solid rgba(8, 228, 231, 0.1);
    border-bottom: 1px solid rgba(8, 228, 231, 0.1);
}

.cruise-cta-container {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 550px;
    max-width: 1600px; /* Evita que se estire infinito en pantallas gigantes */
    margin: 0 auto;
}

/* === COLUMNA IZQUIERDA: TEXTO === */
.cruise-content {
    flex: 1;
    padding: 4rem 5% 4rem 10%; /* Ajuste de márgenes internos */
    position: relative;
    z-index: 2; /* Siempre por encima del fondo y degradados */
    max-width: 700px;
}

.cruise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(253, 249, 243, 0.2);
    border-radius: var(--radius-full);
    padding: 0.4rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    background: rgba(253, 249, 243, 0.05);
}

.cruise-badge .material-symbols-outlined {
    font-size: 1rem;
    color: var(--accent); /* Ícono del barco en Cayan */
}

.cruise-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cruise-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 550px;
}

.cruise-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.cruise-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.cruise-benefits .check-icon {
    color: #25D366; /* Verde tipo WhatsApp o puedes usar var(--accent) para turquesa */
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cruise-btn {
    padding: 0.8rem 2rem;
}

/* === COLUMNA DERECHA: IMAGEN CON FUSIÓN (BLEND) === */
.cruise-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%; /* La imagen ocupa el 60% derecho de la pantalla */
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* El Degradado que fusiona la foto con el fondo en 3 direcciones (Izquierda, Arriba, Abajo) */
.cruise-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Apilamos 3 degradados: el principal para el texto, y dos suaves para borrar los cortes arriba y abajo */
    background: 
        linear-gradient(to right, var(--bg-main) 0%, rgba(3, 23, 28, 0.9) 35%, transparent 100%),
        linear-gradient(to bottom, var(--bg-main) 0%, transparent 15%),
        linear-gradient(to top, var(--bg-main) 0%, transparent 15%);
}

/* === OPTIMIZACIÓN MÓVIL === */
@media (max-width: 992px) {
    .cruise-cta-container {
        flex-direction: column;
        justify-content: center;
        min-height: auto;
    }

    .cruise-image {
        width: 100%;
        opacity: 0.4; /* Bajamos la opacidad de la foto para que no estorbe al texto */
    }

  /* En móvil, el degradado cambia para fusionar mejor de forma vertical */
    .cruise-image::before {
        background: 
            linear-gradient(to top, var(--bg-main) 0%, rgba(3, 23, 28, 0.85) 60%, transparent 100%),
            linear-gradient(to bottom, var(--bg-main) 0%, transparent 20%);
    }

    .cruise-content {
        width: 100%;
        max-width: 100%;
        padding: 4rem 2rem;
        text-align: center; /* Centramos el texto en celular */
    }

    .cruise-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .cruise-benefits li {
        justify-content: center; /* Centra los items de la lista en móvil */
        text-align: left;
    }
}


/* ==========================================================================
   28. CARRUSEL DE MARCAS (LOGO SLIDER)
   ========================================================================== */
.brands-section {
    padding: 3rem 0;
    background-color: var(--bg-main); /* Mantiene el fondo oscuro corporativo */
    border-top: 1px solid rgba(253, 249, 243, 0.03); /* Línea divisoria súper tenue */
    border-bottom: 1px solid rgba(253, 249, 243, 0.03);
}

.brands-title {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

/* Contenedor principal con la máscara de difuminado en los bordes */
.brands-slider-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Efecto "Fade Out" a los lados (Funciona en navegadores modernos) */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* La pista animada */
.brands-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-brands 30s linear infinite;
}

/* Pausa la animación si el usuario pone el mouse encima para ver un logo */
.brands-slider-wrap:hover .brands-track {
    animation-play-state: paused;
}

/* Cada tarjeta de logotipo */
.brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px; /* Separación y tamaño base para cada logo */
    padding: 0 2rem;
}

.brand-item img {
    max-width: 100%;
    max-height: 60px; /* Limita la altura para que todos se vean parejos */
    object-fit: contain;
    /* Estilo Premium: Escala de grises y semi-transparentes por defecto */
    filter: grayscale(100%) opacity(0.4); 
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Efecto Hover: Recuperan su color original e iluminan */
.brand-item img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Animación Infinita (Desplaza el 50% porque duplicamos el grupo) */
@keyframes scroll-brands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* === OPTIMIZACIÓN MÓVIL === */
@media (max-width: 768px) {
    .brands-section {
        padding: 2.5rem 0;
    }
    
    .brand-item {
        width: 160px; /* Más juntos en pantallas pequeñas */
        padding: 0 1.5rem;
    }
    
    .brand-item img {
        max-height: 45px; /* Logos un poco más chicos */
    }
}





/*  NOSOTROS   NOSOTROS   NOSOTROS   NOSOTROS  NOSOTROS   NOSOTROS   NOSOTROS */





/* ==========================================================================
   PÁGINA: NOSOTROS - HERO PREMIUM DE ALTO IMPACTO (ESTILO HOME)
   ========================================================================== */
.nosotros-hero-premium {
    position: relative;
    min-height: 90vh; /* Gran altura visual como el Home */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax premium */
    padding: 9rem 0 6rem 0;
    overflow: hidden;
}

/* Capa oscura de contraste cinemático */
.nosotros-hero-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        linear-gradient(to bottom, var(--bg-dark) 0%, transparent 20%),
        linear-gradient(to top, var(--bg-main) 0%, transparent 15%),
        rgba(3, 23, 28, 0.75);
    z-index: 1;
}

.nosotros-hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px; /* Ancho amplio ideal para el H1 de Cardo */
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 🟢 ESTILO DE LA CÁPSULA (BADGE) */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(3, 23, 28, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.badge-pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #4ade80; /* El característico verde activo */
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
}

.badge-pill-text {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-transform: uppercase;
}

/* 🏛️ EL TÍTULO SERIF (CARDO) */
.hero-premium-title {
    font-family: var(--font-serif); /* Cambia a Cardo para máxima elegancia */
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

/* 📄 EL PÁRRAFO DESCRIPTIVO */
.hero-premium-desc {
    font-family: var(--font-sans); /* Poppins */
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 3rem auto;
    color: rgba(255, 255, 255, 0.7); /* Tono mutado legible */
}

/* 🔘 CONTENEDOR DE BOTONES EN MEDIO */
.hero-premium-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

/* Adaptación exacta para dispositivos móviles */
@media (max-width: 768px) {
    .nosotros-hero-premium {
        min-height: 80vh;
        padding: 7rem 0 4rem 0;
    }
    
    .hero-premium-actions {
        flex-direction: column; /* Se apilan en celular */
        gap: 1rem;
        width: 100%;
        max-width: 320px; /* No se deforman en pantallas chicas */
    }
    
    .hero-premium-actions .btn-primary,
    .hero-premium-actions .btn-ghost {
        width: 100%;
        text-align: center;
    }
}



































