/* ==========================================================================
   DISEÑO VISUAL PREMIUM - ECOTURISMO EL TUNCHE (SATIPO)
   ========================================================================== */

/* Variables de Sistema y Paleta de Colores (Jungle Dark Mode) */
:root {
    /* Colores Principales */
    --bg-dark: #05180f;        /* Verde selva profundo y oscuro */
    --bg-darker: #020b07;      /* Verde casi negro para fondo de secciones alternas */
    --primary: #10b981;        /* Verde esmeralda neón brillante */
    --primary-hover: #059669;  /* Verde esmeralda un poco más oscuro */
    --accent: #f59e0b;         /* Ámbar / Oro cálido de fogata */
    --accent-hover: #d97706;
    
    /* Colores de Texto */
    --text-cream: #f4f6f4;     /* Blanco roto/crema premium */
    --text-muted: #a1a8a3;     /* Texto secundario gris verdoso */
    
    /* Elementos Glassmorphic */
    --glass-bg: rgba(5, 24, 15, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: rgba(0, 0, 0, 0.5);
    
    /* Tipografías */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transiciones y Efectos */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --max-width: 1200px;
}

/* ==========================================================================
   RESET & ESTILOS BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color-scheme: dark;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-cream);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-cream);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar Personalizado */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.3);
    border-radius: 5px;
    border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================================================
   DISEÑO GRID Y CONTENEDORES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid {
    display: grid;
    gap: 2.5rem;
}

.grid-2-cols {
    grid-template-columns: 1fr;
}

.grid-3-cols {
    grid-template-columns: 1fr;
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

@media (min-width: 768px) {
    .grid-2-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem;
    }
    .grid-3-cols {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Espaciados Universales */
.section-padding {
    padding: 5rem 0;
}
@media (max-width: 768px) {
    .section-padding {
        padding: 3.5rem 0; /* Más compacto en móviles */
    }
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-darker {
    background-color: var(--bg-darker);
}

/* ==========================================================================
   COMPONENTES: BOTONES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #031c11;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(16, 185, 129, 0.6);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-cream);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-cream);
    transform: translateY(-3px);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1.5rem;
}

.btn-link:hover {
    color: var(--text-cream);
    transform: translateX(5px);
}

/* Tamaños de Botones */
.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 0.95rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* ==========================================================================
   DISEÑO GRÁFICO / CONTENEDOR DE ASSETS REALES (FALLBACK DE ALTA GAMA)
   ========================================================================== */
.asset-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: linear-gradient(135deg, #092e1b, #04160b);
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* La imagen real se oculta por defecto y se desvanece al cargarse por JS */
.visual-image, .testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    transition: opacity 0.6s ease;
    z-index: 2;
    position: relative;
}

/* Fallback visible premium mientras no exista la imagen */
.asset-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.fallback-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.6;
    animation: bounce 3s infinite;
}

.fallback-text {
    font-family: var(--font-title);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px dashed rgba(16, 185, 129, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   HEADER / NAVEGACIÓN
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-medium);
}

.main-header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: var(--text-cream);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-top: 2px;
}

/* Toggle Navegación Móvil */
.nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-cream);
    position: relative;
    transition: background var(--transition-fast);
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-cream);
    transition: transform var(--transition-fast);
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

/* Hamburger Animación al estar abierto */
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Navegación Estilos base (Móvil First) */
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background-color: #04130c;
    border-left: 1px solid var(--glass-border);
    padding: 6rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    transition: right var(--transition-medium) ease;
    z-index: 1090;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.main-nav.open {
    right: 0;
}

.main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-link {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-cream);
    padding-left: 5px;
}

.nav-cta {
    margin-top: auto;
}

/* Ajustes Desktop para Navegación */
@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
    
    .main-nav {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: none;
        border: none;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 2.5rem;
        box-shadow: none;
    }
    
    .main-nav ul {
        flex-direction: row;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .nav-link:hover, .nav-link.active {
        color: var(--primary);
        padding-left: 0;
    }
    
    .nav-cta {
        margin-top: 0;
    }
}

/* ==========================================================================
   1. HERO SECTION (IMPACTO VISUAL MÓVIL Y DESKTOP)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente oscuro superior e inferior + overlay central translúcido para legibilidad */
    background: linear-gradient(to bottom, 
        rgba(5, 24, 15, 0.8) 0%, 
        rgba(5, 24, 15, 0.4) 50%, 
        var(--bg-dark) 100%
    );
    z-index: 3;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.55; /* Opacidad perfecta para mantener contraste */
}

.bg-fallback-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #092f1d 0%, var(--bg-dark) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tag {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem); /* Flexible y adaptativo */
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    max-width: 900px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--text-cream);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
}

@media (min-width: 600px) {
    .hero-actions {
        flex-direction: row;
        max-width: none;
        justify-content: center;
    }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    display: block;
    width: 15px;
    height: 15px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    cursor: pointer;
    transition: border-color var(--transition-fast);
}

.scroll-arrow:hover {
    border-color: var(--primary);
}

/* ==========================================================================
   2-6. SECCIONES DE EXPERIENCIA (ESTRUCTURA ASIMÉTRICA Y LIMPIA)
   ========================================================================== */
.experience-section .section-visual {
    width: 100%;
    position: relative;
}

.experience-section .visual-wrapper {
    aspect-ratio: 4 / 3;
    width: 100%;
}

@media (min-width: 768px) {
    .experience-section .visual-wrapper {
        aspect-ratio: 16 / 10;
    }
}

/* Collage de Imágenes Asimétrico Premium */
.collage-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 767px) {
    .collage-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        aspect-ratio: auto;
    }
    .collage-wrapper .main-image,
    .collage-wrapper .sub-image {
        width: 100% !important;
        aspect-ratio: 16 / 10 !important;
        position: static !important;
        border: none !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
    }
}

@media (min-width: 768px) {
    .collage-wrapper {
        aspect-ratio: 16 / 11;
    }
}

.collage-wrapper .main-image {
    width: 80%;
    aspect-ratio: 4 / 3;
    z-index: 1;
}

.collage-wrapper .sub-image {
    width: 52%;
    aspect-ratio: 4 / 3;
    position: absolute;
    bottom: -15px;
    right: 0;
    z-index: 3;
    border: 4px solid var(--bg-dark);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-medium);
}

.collage-wrapper:hover .sub-image {
    transform: translate(8px, -8px);
}



/* Decoración visual para las imágenes premium */
.experience-section .visual-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10px;
    left: 10px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--border-radius);
    z-index: 0;
    pointer-events: none;
    transition: transform var(--transition-medium);
}

.experience-section:hover .visual-wrapper::before {
    transform: translate(-5px, -5px);
    border-color: var(--primary);
}

/* Inversión de Grilla en escritorio */
@media (min-width: 768px) {
    .grid-reverse {
        direction: rtl;
    }
    .grid-reverse .section-info {
        direction: ltr;
    }
}

/* Contenido de secciones */
.section-badge-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.icon-section {
    width: 24px;
    height: 24px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.section-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
}

/* Tags de Destacados */
.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    color: var(--text-cream);
    letter-spacing: 0.02em;
}

/* ==========================================================================
   7. TESTIMONIOS (CAROUSEL & VIDEO TESTIMONIAL)
   ========================================================================== */
.testimonials-section .section-header {
    margin-bottom: 3.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0.5rem auto 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
}

/* Card Video Testimonial */
.video-card {
    background: var(--bg-darker);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-testimonial-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #04130c;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 11, 7, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: opacity var(--transition-medium);
}

.video-overlay.playing {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--primary);
    border: none;
    color: #031c11;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    margin-bottom: 0.75rem;
    transition: all var(--transition-medium);
}

.play-btn:hover {
    transform: scale(1.1);
    background-color: var(--primary-hover);
}

.play-icon {
    font-size: 1.2rem;
    margin-left: 3px;
}

.video-label {
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-cream);
}

.video-card .testimonial-content {
    padding: 2rem;
}

/* Estrellas */
.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.star {
    width: 1.1rem;
    height: 1.1rem;
}

.quote {
    font-style: italic;
    color: var(--text-cream);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.testimonial-card .author {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-card .location {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Lista de Testimonios de Texto (Glassmorphism) */
.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.card-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    box-shadow: 0 10px 30px var(--glass-shadow);
    transition: all var(--transition-medium);
}

.card-glass:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.card-glass .quote {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.author-meta .author {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.author-meta .location {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ==========================================================================
   8. LLAMADA A LA ACCIÓN FINAL (OPTIMIZADA PARA CONVERSIÓN)
   ========================================================================== */
.cta-final-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(4, 28, 16, 0.88) 0%, rgba(1, 8, 5, 0.94) 100%), url('assets/images/hospedaje/atardecer-aventura.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border-top: 1px solid var(--glass-border);
}



.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at top right, rgba(16, 185, 129, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: rotate-slow 15s linear infinite;
    display: inline-block;
}

.cta-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    color: #ffffff;
    font-weight: 500;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.6);
}
.cta-btn-wrapper {
    margin-bottom: 1.5rem;
}

.cta-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.main-footer .logo {
    margin-bottom: 1rem;
}

.footer-description {
    line-height: 1.6;
    max-width: 300px;
}

.main-footer h3 {
    font-family: var(--font-title);
    color: var(--text-cream);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.main-footer ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.main-footer a:hover {
    color: var(--primary);
}

.footer-contact p {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
}

/* ==========================================================================
   BOTÓN FLOTANTE DE WHATSAPP (MÓVILES)
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Oficial WhatsApp */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: all var(--transition-medium);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.icon-whatsapp-float {
    width: 32px;
    height: 32px;
}

/* Petición de atención (pulsador) */
.badge-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse 1.5s infinite;
}

/* ==========================================================================
   ANIMACIONES Y TRANSICIONES (INTERSECTION OBSERVER)
   ========================================================================== */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.9; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.9; }
}

@keyframes rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animaciones del Hero en Carga */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-actions.animate-slide-up {
    animation-delay: 0.4s;
}
.hero-subtitle.animate-slide-up {
    animation-delay: 0.2s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animaciones Gatilladas por Scroll (main.js) */
.reveal-left, .reveal-right, .reveal-scale {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.95);
}

.reveal-left.active, .reveal-right.active, .reveal-scale.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Animación de Pulso Continuo para Botón CTA Principal */
.pulse-animation {
    animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ==========================================================================
   NUEVOS ESTILOS: GALERÍA EXPLORA SATIPO Y SOPORTE DE TESTIMONIOS
   ========================================================================== */
.gallery-section {
    position: relative;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item .visual-image {
    transition: transform var(--transition-slow);
}

.gallery-item:hover .visual-image {
    transform: scale(1.08);
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(2, 11, 7, 0.95) 0%, rgba(2, 11, 7, 0.4) 60%, transparent 100%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(0);
    transition: transform var(--transition-medium);
}

.gallery-info h4 {
    font-family: var(--font-title);
    font-size: 1.15rem;
    color: var(--text-cream);
    margin-bottom: 0.15rem;
    font-weight: 700;
}

.gallery-info span {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Fallback de Video Testimonial Preparado */
.asset-fallback-testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #092e1b, #04160b);
    color: var(--text-muted);
}

.fallback-title {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--text-cream);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.fallback-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== FORMULARIO TUNCHE ===== */

.tunche-form {
    max-width: 900px;
    margin: 2rem auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.tunche-form input,
.tunche-form select,
.tunche-form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.tunche-form input::placeholder,
.tunche-form textarea::placeholder {
    color: rgba(255,255,255,0.9);
}
.tunche-form select {
    color: #ffffff;
}

.tunche-form option {
    color: #000000;
}

.tunche-form textarea {
    min-height: 120px;
    resize: vertical;
    margin-bottom: 1rem;
}

.tunche-form button {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 2rem;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.tunche-form select {
    color: #ffffff;
}

.tunche-form option {
    color: #000000;
}

.tunche-form input:focus,
.tunche-form select:focus,
.tunche-form textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.btn-secondary {
    width: 100%;
    max-width: 320px;
    min-height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px auto 40px;
    font-size: 16px;
    font-weight: 700;
}