/* ═══════════════════════════════════════════════
   FUENTES PREMIUM — Sackers Gothic
   ═══════════════════════════════════════════════ */
@font-face {
    font-family: 'Sackers Gothic Heavy';
    src: url('assets/fonts/Sackers Gothic Heavy.woff2') format('woff2'),
         url('assets/fonts/Sackers Gothic Heavy.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sackers Gothic Medium';
    src: url('assets/fonts/Sackers Gothic Medium.woff2') format('woff2'),
         url('assets/fonts/Sackers Gothic Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sackers Gothic Light';
    src: url('assets/fonts/Sackers Gothic Light.woff2') format('woff2'),
         url('assets/fonts/Sackers Gothic Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ═══════════════════════════════════════════════
   TOKENS — Identidad Bahía Caimanero
   ═══════════════════════════════════════════════ */
:root {
    --turquesa:  #1B9AAA;
    --olivo:     #5D6735;
    --terracota: #EE6C4D;
    --rosado:    #F45B69;
    --marfil:    #FFF8F0;
    --oscuro:    #121212;
    --blanco:    #FFFFFF;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', sans-serif;
    --font-premium: 'Sackers Gothic Heavy', 'Inter', sans-serif;
}

/* ═══════════════════════════════════════════════
   RESET Y BASE
   ═══════════════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--blanco); }
body {
    font-family: var(--font-sans);
    color: var(--oscuro);
    background: var(--blanco);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
p { text-align: justify; }

/* Tipografía Core */
.title-serif {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.title-serif em {
    font-style: italic;
    color: var(--olivo);
}
.body-sans {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.6;
    letter-spacing: 0.02em;
}
.coordinates-text {
    font-family: var(--font-premium);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--terracota);
}

.color-turquesa { color: var(--turquesa); }
.color-olivo { color: var(--olivo); }
.color-terracota { color: var(--terracota); }
.color-oscuro { color: var(--oscuro); }
.color-marfil { color: var(--marfil); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}
.text-center { text-align: center; }

/* ═══════════════════════════════════════════════
   BOTONES
   ═══════════════════════════════════════════════ */
.btn-solid-turquesa, .btn-outline-turquesa, .btn-solid-dark, .btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-premium);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.3s;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-solid-turquesa {
    background: var(--turquesa);
    color: var(--blanco);
    border: 2px solid var(--turquesa);
}
.btn-solid-turquesa:hover { background: #15828f; border-color: #15828f; }

.btn-outline-turquesa {
    background: transparent;
    color: var(--turquesa);
    border: 2px solid var(--turquesa);
}
.btn-outline-turquesa:hover { background: var(--turquesa); color: var(--blanco); }

.btn-solid-dark {
    background: var(--oscuro);
    color: var(--blanco);
    border: 2px solid var(--oscuro);
}
.btn-solid-dark:hover { background: #333; }

.btn-nav {
    background: var(--turquesa);
    color: var(--blanco);
    border: none;
    font-size: 1rem;
}
.btn-nav:hover { background: #15828f; }

/* ═══════════════════════════════════════════════
   NAVEGACIÓN (Minimalista Premium)
   ═══════════════════════════════════════════════ */
#main-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    background: rgba(255, 255, 255, 0.35); /* 35% opacity background bar always present */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.4s, padding 0.4s;
}
#main-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
#main-nav.scrolled .nav-menu a {
    text-shadow: none;
}
.nav-logo { height: 50px; width: auto; transition: height 0.4s; }

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu {
    display: flex;
    gap: 16px;
    align-items: center;
}
.nav-menu a {
    color: var(--oscuro);
    font-family: var(--font-premium);
    font-weight: 900;
    font-size: 0.78rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}
.nav-menu a:hover { color: var(--turquesa); }

/* Brochure nav link — same style as other nav items */
.nav-brochure-link {
    color: var(--oscuro) !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    transition: color 0.3s ease !important;
}
.nav-brochure-link:hover {
    color: var(--turquesa) !important;
    background: transparent !important;
    transform: none;
    box-shadow: none;
}

/* Disponibilidad nav link — same style as other nav menu links */
.nav-disponibilidad-link {
    color: var(--oscuro) !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    font-size: 0.8rem !important;
    letter-spacing: 1.5px !important;
    box-shadow: none !important;
    transition: color 0.3s ease !important;
    animation: none !important;
}
.nav-disponibilidad-link:hover {
    color: var(--turquesa) !important;
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

/* VER DISPONIBILIDAD button inside Plan Maestro section — highlighted glowing pulse CTA */
.btn-disponibilidad-animate {
    background: var(--turquesa) !important;
    border-color: var(--turquesa) !important;
    color: var(--blanco) !important;
    box-shadow: 0 4px 15px rgba(27, 154, 170, 0.4) !important;
    animation: ctaPulse 2s infinite ease-in-out !important;
}
.btn-disponibilidad-animate:hover {
    background: #15828f !important;
    border-color: #15828f !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(27, 154, 170, 0.6) !important;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(27, 154, 170, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(27, 154, 170, 0);
        transform: scale(1.04);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(27, 154, 170, 0);
        transform: scale(1);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--marfil);
    color: var(--turquesa);
    transition: all 0.3s;
}
.btn-icon:hover { background: var(--turquesa); color: var(--blanco); }
.mobile-only { display: none; }

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}
.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--oscuro);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}
/* Active hamburger animation */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
    padding: 20px;
}
.mobile-menu-content a {
    color: var(--oscuro);
    font-family: var(--font-premium);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.mobile-menu-content a:hover {
    color: var(--turquesa);
}
.btn-mobile-nav {
    margin-top: 15px;
    background: var(--turquesa);
    color: var(--blanco) !important;
    font-family: var(--font-premium);
    font-weight: 900;
    font-size: 1.1rem;
    padding: 12px 35px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(27, 154, 170, 0.3);
}
body.no-scroll {
    overflow: hidden;
}

/* ═══════════════════════════════════════════════
   1. HERO SCENE
   ═══════════════════════════════════════════════ */
.hero-scene {
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: #ffffff; /* White background under video */
}
.hero-scene::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 45%, rgba(255, 255, 255, 0.85) 55%, rgba(255, 255, 255, 0) 80%);
    z-index: 2;
    pointer-events: none;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1; /* 100% video opacity as requested */
}
.hero-fade {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 15vh;
    background: linear-gradient(to bottom, transparent, var(--blanco));
    z-index: 2;
}
.hero-content {
    position: absolute;
    top: 50%; left: 5%;
    transform: translateY(-50%);
    z-index: 3;
    max-width: 600px;
    background: transparent; /* Completely transparent background card to avoid blocking the video */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}
.hero-kicker {
    font-family: var(--font-premium);
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
    color: #C14A2E; /* Deep, rich terracotta red for high contrast on white */
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9); /* Clean white halo */
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.1rem, 4.5vw, 3.3rem);
    line-height: 1.15;
    margin-bottom: 20px;
    color: #105963; /* Deep, rich teal/turquoise for high contrast on white */
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9); /* Clean white halo */
}
.hero-title em {
    font-style: italic;
    color: #4B5320 !important; /* Deep, dark olive green for perfect contrast */
}
.hero-desc {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #1e293b; /* Deep slate-800 for high readability on white gradient */
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}
.hero-actions { display: flex; gap: 15px; margin-bottom: 50px; }

/* Badges flotantes */
.hero-badges {
    display: flex;
    gap: 20px;
    background: transparent;
    backdrop-filter: none;
    padding: 20px 0 0 0;
    margin-top: 10px;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1); /* Dark border for white background gradient */
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.badge-item .icon { font-size: 1.5rem; }
.badge-item strong {
    display: block;
    font-family: var(--font-premium);
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--oscuro); /* Dark text for perfect readability on white gradient */
    letter-spacing: 1px;
}
.badge-item small { 
    color: #555555; /* Dark grey for readability on white gradient */
    font-size: 0.8rem; 
}

/* ═══════════════════════════════════════════════
   2. PALM CURTAIN & AMENITIES
   ═══════════════════════════════════════════════ */
.palms-scene {
    min-height: auto;
    padding: 80px 0;
    background: transparent; /* Fondo de arena visible de forma continua */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.palms-content {
    z-index: 1;
    max-width: 1000px;
    text-align: center;
    padding: 100px 20px;
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.am-item {
    background: var(--blanco);
    padding: 30px 15px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--oscuro);
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.am-icon {
    width: 40px;
    height: 40px;
    color: var(--turquesa);
    margin-bottom: 15px;
    transition: transform 0.3s;
}
.am-item:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 45px rgba(0,0,0,0.12); 
}
.am-item:hover .am-icon {
    transform: scale(1.1);
}

/* Las palmeras (TAMAÑO MÁXIMO PARA CUBRIR 100%) */
.palms-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    pointer-events: none;
    overflow: hidden; /* Que no se salgan del contorno de su escena mientras hacen pin */
}
.palm {
    position: absolute;
    width: 55vw; /* Cada hoja cubre el 55% de la pantalla para traslaparse en medio */
    height: 55vh;
    object-fit: cover;
    will-change: transform;
}
/* Posición inicial CSS para que se encuentren en el centro perfecto */
.p-tl { top: 0; left: 0; transform-origin: top left; }
.p-tr { top: 0; right: 0; transform-origin: top right; }
.p-bl { bottom: 0; left: 0; transform-origin: bottom left; }
.p-br { bottom: 0; right: 0; transform-origin: bottom right; }


/* ═══════════════════════════════════════════════
   FONDO CONTINUO DE ARENA/MAR (SECCIONES 3, 4, 5)
   ═══════════════════════════════════════════════ */
.sand-wrapper {
    position: relative;
    /* Usamos el nuevo fondo completo redimensionado por el usuario */
    background: url('assets/scrolling/Arena%20de%20Playa%20Background.jpg') no-repeat center top;
    background-size: 100% 100%;
    /* Reducimos el padding excesivo ya que la imagen viene ajustada a la medida */
    padding-bottom: 100px; 
}

/* Elementos Flotantes (Z-index 2) MUCHO MÁS GRANDES */
.float-item {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(5px 10px 15px rgba(0,0,0,0.2));
}
.sf-1 { top: 5%; right: 5%; width: 200px; }
.sf-2 { top: 30%; left: 5%; width: 250px; }
.sf-3 { top: 60%; right: 8%; width: 180px; }
.shell-1 { bottom: 25%; left: 10%; width: 220px; }
.shell-2 { top: 40%; right: 15%; width: 190px; } /* Movido entre Galería y Plan Maestro */

/* El Cangrejo posicionado justo debajo de las tarjetas de proceso, caminando en la arena */
.crab-item {
    position: absolute;
    top: 75%; /* Posicionado relativo a la sección de Proceso */
    left: -200px; 
    width: 250px; 
    z-index: 3;
    will-change: transform;
    filter: drop-shadow(5px 15px 20px rgba(0,0,0,0.4));
}

/* ═══════════════════════════════════════════════
   3. RENDERS CAROUSEL
   ═══════════════════════════════════════════════ */
.renders-scene {
    padding: 100px 0;
}
.galeria-vision-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    line-height: 1.6;
    opacity: 0.9;
    padding: 0 20px;
}
.renderSwiper {
    margin-top: 50px;
    padding-bottom: 50px;
}
.renderSwiper .swiper-slide {
    width: 80%;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}
.renderSwiper .swiper-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    cursor: zoom-in;
}

/* ═══════════════════════════════════════════════
   4. MASTERPLAN & 5. LOCATION (DUAL COL)
   ═══════════════════════════════════════════════ */
.masterplan-scene, .location-scene {
    padding: 80px 0;
}
.location-scene {
    position: relative; /* Para posicionamiento correcto del cangrejo */
}
.dual-col {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.dual-col.rev { flex-direction: row-reverse; }

.col-text { flex: 1; }
.col-img, .col-map { flex: 1; }

.features-list { list-style: none; margin: 30px 0; }
.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.finances-box {
    background: var(--marfil);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--terracota);
}
.finances-box strong { display: block; font-size: 1.2rem; margin-bottom: 10px; color: var(--terracota); }
.finances-box ul { margin-left: 20px; margin-top: 10px; }

.masterplan-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    cursor: zoom-in;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-info .distances {
    list-style: none;
    margin: 20px 0;
}
.map-info .distances li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════
   FINAL CTA BUTTON
   ═══════════════════════════════════════════════ */
.final-cta {
    padding: 60px 0 100px 0;
    position: relative;
    z-index: 10;
}
.btn-large {
    font-size: 1.05rem;
    padding: 16px 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ═══════════════════════════════════════════════
   6. FOOTER 3 COLUMNAS
   ═══════════════════════════════════════════════ */
.main-footer {
    background: var(--turquesa);
    color: var(--marfil);
    padding: 80px 40px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}
.footer-col h3 {
    color: var(--terracota);
    font-family: var(--font-premium);
    font-weight: 900;
    font-size: 1.05rem;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.col-brand .footer-logo {
    max-width: 180px;
    height: auto;
    width: auto;
    margin-bottom: 20px;
}
.col-brand p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.98;
}
.col-brand .copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.90;
}

.col-links nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.col-links nav a {
    color: var(--marfil);
    text-decoration: none;
    font-family: var(--font-premium);
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    text-transform: uppercase;
}
.col-links nav a:hover {
    color: var(--terracota);
}

.col-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.col-contact ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}
.col-contact ul li a {
    color: var(--marfil);
    transition: color 0.3s;
}
.col-contact ul li a:hover {
    color: var(--terracota);
}
.col-contact svg {
    color: var(--marfil);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 992px) {
    .dual-col, .dual-col.rev { flex-direction: column; padding: 30px; }
    .palm { width: 80vw; height: 80vh; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .col-brand .footer-logo { margin: 0 auto 20px; }
    .col-contact ul li { justify-content: center; }
    .nav-menu { display: none; } /* Ocultar menú en móviles por espacio */
    .menu-toggle { display: flex; } /* Mostrar botón hamburguesa */
    .nav-right-group { gap: 20px; } /* Ajustar espacio en móviles */
}

@media (max-width: 768px) {
    .sand-wrapper {
        padding-bottom: 200px; /* Espacio ajustado para la nueva imagen en móvil */
        background-size: cover; /* Evita que el fondo de arena y mar se vea estirado */
        background-position: center top;
    }
    #main-nav { padding: 15px 20px; }
    #main-nav.scrolled { padding: 10px 20px; }
    .nav-logo { height: 40px; }
    .btn-nav { display: none; } 
    .mobile-only { 
        display: inline-flex; 
        width: 38px !important;
        height: 38px !important;
        background: var(--turquesa) !important;
        color: var(--blanco) !important;
        box-shadow: 0 4px 10px rgba(27, 154, 170, 0.25) !important;
        border: none !important;
        align-items: center;
        justify-content: center;
    }
    .mobile-only svg {
        width: 16px;
        height: 16px;
    }
    .hero-actions {
        display: flex !important; /* Muestra el botón del Hero en el celular */
    }
    .crab-item {
        width: 120px !important; /* Cangrejo más pequeño en celular */
        top: 80% !important; /* Posicionado para no verse cortado en el celular */
    }
    
    .hero-scene {
        height: auto !important;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start !important; /* Changed from center to prevent vertical slide overlap */
        align-items: center;
        padding-top: 140px !important; /* Increased top padding to clear the fixed navigation header */
        padding-bottom: 60px !important;
    }
    .hero-scene::before {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, 0.4) 100%) !important;
    }
    
    .hero-content {
        position: relative !important;
        top: 0 !important;
        transform: none !important;
        left: 0 !important;
        right: 0 !important;
        text-align: center;
        max-width: 100%;
        padding: 0 10px;
        margin-top: 10px; /* Minor push for elegance */
    }
    
    .hero-title {
        font-size: 2.1rem !important; /* Reduced to avoid wrapping and overlap issues on small devices */
        line-height: 1.2;
    }
    
    .hero-actions { justify-content: center; align-items: center; flex-direction: column; gap: 15px; margin-bottom: 30px; }
    .hero-badges { flex-direction: column; gap: 10px; align-items: flex-start; text-align: left; }
    
    .float-item { width: 120px !important; }
    
    .renderSwiper .swiper-slide img { height: 300px; }
}

/* ═══════════════════════════════════════════════
   OPTIMIZACIONES CRO & SECCIONES LANDING 2026
   ═══════════════════════════════════════════════ */

/* Bloque 2: Prueba Social */
.social-proof-scene {
    background: var(--marfil);
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}
.proof-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.proof-item {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 320px;
}
.proof-item .icon-badge {
    font-size: 2rem;
    background: var(--blanco);
    width: 60px; height: 60px;
    flex-shrink: 0; /* Evita que el flexbox lo deforme en óvalo */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(27, 154, 170, 0.15);
}
.proof-item h4 {
    font-family: var(--font-premium);
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--oscuro);
    margin-bottom: 2px;
}
.proof-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.3;
}

/* Bloque 4: Proceso (Cómo Funciona) */
.process-scene {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.process-step {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 45px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}
.step-num {
    position: absolute;
    top: -20px; left: 30px;
    background: var(--terracota);
    color: var(--blanco);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-premium);
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(238, 108, 77, 0.3);
}
.process-step h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin: 15px 0 10px 0;
    color: var(--oscuro);
}
.process-step p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.5;
}

/* Bloque 5: Caso Real */
.case-study-scene {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}
.case-card {
    background: var(--oscuro);
    color: var(--marfil);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    gap: 50px;
    align-items: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    text-align: left;
}
.case-content { flex: 1.2; }
.case-content h3 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}
.case-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.9;
}
.case-metrics {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.metric-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
}
.metric-val {
    font-family: var(--font-premium);
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--terracota);
    display: block;
    margin-bottom: 5px;
}
.metric-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Bloque 6: FAQ Acordeón */
.faq-scene {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}
.faq-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}
.faq-item {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--oscuro);
    font-weight: 600;
    user-select: none;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    padding: 0 30px 22px 30px;
    max-height: 300px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
    font-weight: bold;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Bloques 7 y 8: Final CTA + Formulario Mínimo */
.cta-form-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: left;
}
.cta-text-side { flex: 1; }
.cta-text-side h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--oscuro);
}
.cta-text-side p {
    font-size: 1.15rem;
    line-height: 1.5;
    color: #444;
}
.cta-form-side { flex: 1; width: 100%; }
.min-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.min-form input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    outline: none;
    background: var(--blanco);
    transition: border-color 0.3s;
}
.min-form input:focus {
    border-color: var(--turquesa);
}
.min-form .btn-submit {
    background: var(--terracota);
    color: var(--blanco);
    border: none;
    border-radius: 30px;
    padding: 14px 30px;
    font-family: var(--font-premium);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(238,108,77,0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.min-form .btn-submit:hover {
    background: #d85739;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238,108,77,0.4);
}

/* Barra Móvil Zona del Pulgar (Sticky Bottom Bar) */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 12px 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 998;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.08);
}
.sticky-btn-main {
    flex: 1.5;
    background: var(--terracota);
    color: var(--blanco);
    text-align: center;
    font-family: var(--font-premium);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    padding: 14px;
    border-radius: 30px;
    text-transform: uppercase;
    margin-right: 12px;
    box-shadow: 0 4px 12px rgba(238,108,77,0.3);
}
.sticky-btn-whatsapp {
    flex: 1;
    background: #25D366;
    color: var(--blanco);
    text-align: center;
    font-family: var(--font-premium);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    padding: 14px;
    border-radius: 30px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

/* Banner de Privacidad (GDPR Consent Banner) */
.cookie-banner {
    position: fixed;
    bottom: 30px; left: 30px;
    max-width: 420px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    color: var(--marfil);
    border-radius: 20px;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transform: translateY(150px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    text-align: left;
}
.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}
.cookie-banner h4 {
    font-family: var(--font-premium);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--terracota);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.cookie-banner p {
    font-size: 0.95rem;
    line-height: 1.45;
    opacity: 0.85;
    margin-bottom: 20px;
}
.cookie-actions {
    display: flex;
    gap: 10px;
}
.cookie-btn {
    flex: 1;
    font-family: var(--font-premium);
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.cookie-btn.accept {
    background: var(--turquesa);
    color: var(--blanco);
}
.cookie-btn.accept:hover {
    background: #15828f;
}
.cookie-btn.reject {
    background: transparent;
    color: var(--marfil);
    border: 1px solid rgba(255,255,255,0.3);
}
.cookie-btn.reject:hover {
    background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════════
   BOTÓN FLOTANTE DE WHATSAPP (FAB)
   ═══════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    display: block;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}
.whatsapp-float img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

@media (max-width: 768px) {
    /* Ocultar la barra sticky del pulgar ya que se usa el globo flotante */
    .mobile-sticky-bar {
        display: none !important;
    }
    /* Quitar espacio al final de la página */
    body {
        padding-bottom: 0 !important;
    }
    
    /* Adaptabilidad de secciones nuevas */
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .proof-grid {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
        padding-left: 20px;
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .case-card {
        flex-direction: column;
        padding: 35px 20px;
        gap: 30px;
    }
    .case-metrics {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .faq-question {
        padding: 18px 20px;
        font-size: 1.1rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
    }
    .cta-form-container {
        flex-direction: column;
        padding: 35px 20px;
        gap: 30px;
    }
    .cta-text-side {
        text-align: center;
    }
    
    /* Suprimir hovers móviles */
    .process-step:hover {
        transform: none;
        box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    }
    .btn-submit:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(238,108,77,0.3);
    }
    
    /* Banner de cookies responsivo */
    .cookie-banner {
        left: 15px; right: 15px;
        bottom: 20px; /* Queda en la parte inferior al no haber barra */
        max-width: none;
    }
    
    /* Globo flotante de WhatsApp en móvil */
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
}
