/* =========================================
   VARIABLES GLOBALES & PALETA DE COLORES
   (Moderno + Temático Natural "Bioparque")
   ========================================= */
:root {
    /* Paleta Principal - Tonos Suaves Temáticos (Inspiración Bioparque) */
    --color-primary: #5c9e47;
    /* Verde orgánico suave (Hojas) */
    --color-secondary: #315c2b;
    /* Verde bosque cálido/apagado (Pino) */
    --color-tertiary: #d4e0c8;
    /* Verde ceniza muy claro */

    --color-bg-light: #f9f7f2;
    /* Crema botánico suave */
    --color-bg-alt: #ece9df;
    /* Arena orgánica (Separación) */
    --color-neutral: #f9f7f2;

    /* Textos y Acentos */
    --color-text-main: #3d3b38;
    /* Gris tierra cálido */
    --color-text-light: #ffffff;

    --color-earth: #a68a64;
    /* Madera clara suave */
    --color-earth-dark: #826c4d;

    /* Tipografía */
    --font-display: 'Londrina Solid', cursive;
    --font-heading: 'Lilita One', sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* Sombras cálidas (Estilo Bioparque Premium) */
    --shadow-flat: 0px 8px 25px rgba(49, 92, 43, 0.08);
    /* Sombra difusa verde oscura */
    --shadow-hover: 0px 15px 40px rgba(49, 92, 43, 0.15);
    /* Elevación interactiva */

    /* Radios curvos orgánicos pero limpios */
    --radius-main: 24px;
    --radius-pill: 50px;
    --radius-leaf: 40px 10px 40px 10px;
    /* Estilo temático Ukumarí */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    /* Prevent font scaling in landscape on iOS */
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-light);
    /* Textura de papel/ruido muy sutil (Premium Nature) */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

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

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

ul {
    list-style: none;
}

/* =========================================
   UTILITIES & DECORADORES (SVG)
   ========================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.hero-container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.relative-z {
    position: relative;
    z-index: 5;
}

.section-padding {
    padding: 80px 0;
    position: relative;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 120px 0;
    }
}

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

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

.bg-soft {
    background-color: var(--color-bg-alt);
    bottom: 0;
}

/* =========================================
   ANIMACIONES & EFECTOS CREATIVOS
   ========================================= */

/* Parallax Botánico (Hojas flotando) */
.parallax-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    transform: translateZ(0);
    /* GPU acceleration */
    will-change: transform;
}

.leaf-particle {
    position: absolute;
    opacity: 0.15;
    animation: leafFloat linear infinite;
    pointer-events: none;
}

@keyframes leafFloat {
    from {
        transform: translateY(110vh) rotate(0deg);
    }

    to {
        transform: translateY(-10vh) rotate(360deg);
    }
}

/* Hero Cinematic Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurnsFade 15s linear infinite alternate;
}

@keyframes kenBurnsFade {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-2%, -2%);
    }
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Adventure Badge (True Corner Mode - Aesthetic Margin) */
.hero-badge {
    position: absolute;
    top: 145px;
    /* Lowered from 115px to account for larger 120px navbar */
    right: 40px;
    background-color: var(--color-primary);
    border: 2px solid var(--color-secondary);
    box-shadow: 0 4px 0 var(--color-secondary);
    padding: 6px 18px;
    border-radius: 50px;
    color: white;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    animation: floatBadge 4s ease-in-out infinite;
}

.hero-badge i {
    font-size: 1rem;
    color: var(--color-tertiary);
}

.hero-badge strong {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Wave Divider */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 5;
    fill: var(--color-bg-light);
}

.hero-title,
.hero-subtitle {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.overlap-top {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    border-radius: 60px 60px 0 0;
    padding-top: 100px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.06);
    /* Eleva la sección */
}

.overlap-bottom {
    position: relative;
    z-index: 10;
    margin-bottom: -60px;
    border-radius: 0 0 60px 60px;
    padding-bottom: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* Colores de las olas (fallback si queda algun SVG) */
.shape-fill {
    fill: var(--color-bg-light);
}

.shape-fill-bg {
    fill: var(--color-bg-alt);
}

.shape-fill-bg-light {
    fill: var(--color-bg-light);
}

.shape-fill-dark {
    fill: var(--color-secondary);
}

.shape-fill-forest {
    fill: #2c3e29;
}

/* Títulos con temáticas limpias */
.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    letter-spacing: -1px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    line-height: 1.1;
}

.section-title[data-watermark]::before {
    content: attr(data-watermark);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: 2px;
    color: var(--color-secondary);
    opacity: 0.02;
    /* Almost invisible, pure texture */
    z-index: -1;
    white-space: nowrap;
    text-transform: uppercase;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    /* Smaller */
    color: var(--color-earth);
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Tighter */
    margin-bottom: 12px;
}

.section-subtitle i {
    font-size: 1.4rem;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--color-text-main);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* =========================================
   BOTONES
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
}

.btn-pill {
    border-radius: var(--radius-pill);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border: 2px solid var(--color-secondary);
    box-shadow: 0 5px 0 var(--color-secondary);
}

@keyframes pulseEco {
    0% {
        box-shadow: 0 5px 0 var(--color-secondary), 0 0 0 0 rgba(92, 158, 71, 0.4);
    }

    70% {
        box-shadow: 0 5px 0 var(--color-secondary), 0 0 0 15px rgba(92, 158, 71, 0);
    }

    100% {
        box-shadow: 0 5px 0 var(--color-secondary), 0 0 0 0 rgba(92, 158, 71, 0);
    }
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(3px);
    box-shadow: 0 2px 0 var(--color-secondary);
    animation: none;
    /* Detiene pulso al hover */
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.05);
}

.btn-outline-primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    transform: translateY(3px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-outline-light {
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--color-neutral);
    color: var(--color-text-light);
}

.btn-outline-light:hover {
    background-color: var(--color-neutral);
    color: var(--color-secondary);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-bg-light);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.navbar.scrolled {
    padding: 0;
    background-color: rgba(249, 247, 242, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(49, 92, 43, 0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    /* Reduced to 90px for a more compact, high-end feel */
    padding: 0 20px;
}

.logo-img {
    height: 105px;
    /* Larger logo size */
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.12));
    margin-top: 10px;
    /* Slight offset to allow it to "sit" lower in the slim header */
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-secondary);
    padding: 10px 0;
    position: relative;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: translateX(-50%) scale(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 991px) {
    .navbar-container {
        height: 70px;
        justify-content: center;
        /* Centers the logo which is the main flex child now */
        position: relative;
        padding: 0 15px;
    }

    .logo {
        position: relative;
        z-index: 10;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .logo-img {
        height: 75px;
        /* Slightly smaller for better balance */
        margin-top: 5px;
        /* Adjust offset for 70px header */
        filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.12));
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-bg-light);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 40px 20px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.4rem;
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-actions {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        gap: 0;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 2.22rem;
        color: var(--color-secondary);
        cursor: pointer;
        padding: 10px;
    }

    .nav-actions .btn {
        display: none;
    }
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1540544660406-6aee9dac65e7?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    animation: heroZoom 25s infinite alternate linear;
    z-index: 0;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.12);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.4) 100%), rgba(49, 92, 43, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--color-text-light);
    max-width: 900px;
    padding-top: 50px;
    pointer-events: auto;
}

/* Combined into .hero-badge above */

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(3.2rem, 6.5vw, 5.8rem);
    letter-spacing: -1px;
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--color-neutral);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
}

.hero-cta-group {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* =========================================
   SOBRE NOSOTROS
   ========================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-container {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.badge-thematic {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-neutral);
    color: var(--color-secondary);
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(8, 138, 5, 0.1);
}

.badge-thematic i {
    font-size: 1.4rem;
    color: var(--color-primary);
}

/* Contenedor principal Maze */
.maze {
    position: relative;
    padding: 120px 0;
    color: var(--color-text-light);
    overflow: hidden;
}

.maze-content {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.maze-bg-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Más oscuro para contraste */
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
}

.gsap-parallax {
    position: relative;
    overflow: hidden;
}

.gsap-img {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    z-index: 0;
}

.blob-frame {
    width: 100%;
    height: 600px;
    /* Increased height for impact */
    border-radius: 120px 40px 150px 30px;
    /* More asymmetrical, organic blob style */
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 5px solid var(--color-neutral);
    transform-style: preserve-3d;
    perspective: 1200px;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    z-index: 1;
}

.blob-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transform: translateZ(30px) scale(1.1);
    /* Extra depth */
}

/* Sello Flotante ("Aventura Natural") */
.floating-seal {
    position: absolute;
    bottom: 30px;
    left: -20px;
    width: 140px;
    height: 140px;
    background-color: var(--color-earth);
    color: var(--color-neutral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    border: 8px solid var(--color-neutral);
    transform: rotate(-10deg);
    flex-direction: column;
    z-index: 3;
    animation: floatLeaf 4s ease-in-out infinite;
}

@keyframes floatLeaf {
    0% {
        transform: translateY(0px) rotate(-10deg);
    }

    50% {
        transform: translateY(-15px) rotate(-5deg);
    }

    100% {
        transform: translateY(0px) rotate(-10deg);
    }
}

.floating-seal i {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--color-tertiary);
}

/* =========================================
   EXPERIENCIAS
   ========================================= */
.experiences {
    position: relative;
    z-index: 1;
}

.experiences-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .experiences-grid {
        grid-template-columns: 1.3fr 1fr;
        gap: 50px;
    }
}

.exp-grid-cols {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.exp-card {
    background-color: var(--color-neutral);
    border-radius: var(--radius-leaf);
    /* Forma de Hoja Temática */
    padding: 0;
    box-shadow: var(--shadow-flat);
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    border: 3px solid rgba(49, 92, 43, 0.06);
    opacity: 1 !important;
    /* Forzar visibilidad */
    visibility: visible !important;
}

.exp-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(49, 92, 43, 0.15);
    border-color: var(--color-primary);
}


.card-img-wrapper {
    height: 300px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.exp-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.popular-ribbon {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-earth);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    z-index: 2;
    border: 2px solid var(--color-neutral);
}

.exp-card-body {
    padding: 40px;
}

.card-icon-top {
    width: 60px;
    height: 60px;
    background-color: var(--color-bg-alt);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.exp-desc {
    color: var(--color-text-main);
    opacity: 0.85;
    margin-bottom: 25px;
}

.exp-prices-modern {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background-color: var(--color-bg-light);
    padding: 15px 20px;
    border-radius: 16px;
}

.price-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.price-item:last-child {
    border-right: none;
}

.price-item .label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-main);
    opacity: 0.6;
    text-transform: uppercase;
}

.price-item .value {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.exp-includes-list {
    list-style: none;
    margin-bottom: 25px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.exp-card:hover .exp-includes-list {
    max-height: 200px;
    opacity: 1;
    margin-top: 20px;
}

.exp-includes-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
}

.exp-includes-list i {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.compact-card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-neutral);
    border-radius: var(--radius-leaf);
    box-shadow: var(--shadow-flat);
    overflow: hidden;
    margin-bottom: 30px;
    transition: var(--transition-fast);
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(8, 138, 5, 0.1);
    border-color: var(--color-tertiary);
}


@media (min-width: 500px) {
    .compact-card {
        flex-direction: row;
        align-items: center;
        height: 170px;
    }
}

.compact-img {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-alt);
    text-align: center;
    color: var(--color-text-main);
    font-weight: 600;
    font-size: 0.9rem;
}

@media (min-width: 500px) {
    .compact-img {
        height: 100%;
        align-self: stretch;
        width: 160px;
        flex-shrink: 0;
    }
}

.compact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.compact-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.compact-body h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.price-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.compact-body p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* =========================================
   LABERINTO
   ========================================= */
/* =========================================
   LABERINTO EDITORIAL (PREMIUM STORYTELLING)
   ========================================= */
.labyrinth-editorial {
    padding: 120px 0;
    background-color: var(--color-bg-light);
    overflow: hidden;
}

.labyrinth-story-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

@media (min-width: 992px) {
    .labyrinth-story-block {
        grid-template-columns: 1fr 1.2fr;
    }

    .labyrinth-story-block.reverse {
        direction: rtl;
    }

    .labyrinth-story-block.reverse .story-content {
        direction: ltr;
        text-align: right;
    }
}

.story-visual {
    position: relative;
    border-radius: var(--radius-leaf);
    box-shadow: var(--shadow-hover);
    height: 600px;
    border: 8px solid var(--color-neutral);
    z-index: 5;
    background: #fff;
    /* Removed overflow:hidden to allow vines behind */
}

.story-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* This clips the image zoom */
    border-radius: calc(var(--radius-leaf) - 8px);
    position: relative;
    z-index: 10;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}


/* Organic Vines Behind (Subtle & Elegant) */
.vines-decorator {
    position: absolute;
    inset: -15px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    transform: scale(0.98);
}

.labyrinth-story-block:hover .vines-decorator {
    opacity: 0.6;
    transform: scale(1.05) rotate(1deg);
}

.vine-leaf {
    position: absolute;
    color: var(--color-primary);
    font-size: 2.2rem;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.05));
    opacity: 0.5;
}

.leaf-1 {
    top: -15px;
    right: 10%;
    transform: rotate(45deg);
}

.leaf-2 {
    bottom: 5%;
    left: -15px;
    transform: rotate(-120deg);
    font-size: 1.8rem;
}

.leaf-3 {
    top: 55%;
    right: -20px;
    transform: rotate(15deg);
    font-size: 1.5rem;
}

/* SVG Liana Path (Thinner & Delicate) */
.liana-svg {
    position: absolute;
    inset: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    z-index: -1;
}

.liana-path {
    fill: none;
    stroke: #45753b;
    stroke-width: 1.2;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    transition: stroke-dashoffset 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    stroke-linecap: round;
    opacity: 0.3;
}

.labyrinth-story-block:hover .liana-path {
    stroke-dashoffset: 0;
}


.labyrinth-story-block:hover .story-visual img {
    transform: scale(1.1);
}

.story-content {
    padding: 20px;
}

.story-number {
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--color-primary);
    opacity: 0.1;
    line-height: 1;
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
}

.story-content h3 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-bottom: 30px;
    color: var(--color-secondary);
    position: relative;
    z-index: 2;
}

.story-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-main);
    opacity: 0.85;
    margin-bottom: 40px;
}

.story-accent-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accent-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.accent-item i {
    font-size: 2rem;
    background: var(--color-tertiary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* =========================================
   EXPERIENCIAS KINDIA (Editorial Layout)
   ========================================= */
.experiences-editorial {
    padding: 120px 0;
    background-color: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

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

.exp-card {
    position: relative;
    border-radius: var(--radius-leaf);
    background: var(--color-bg-light);
    padding: 24px;
    box-shadow: var(--shadow-flat);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(49, 92, 43, 0.05);
}

.exp-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.exp-visual {
    position: relative;
    height: 350px;
    border-radius: calc(var(--radius-leaf) - 10px);
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 1;
}

.exp-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.exp-card:hover .exp-visual img {
    transform: scale(1.1);
}

.exp-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(49, 91, 43, 0.85);
    backdrop-filter: blur(8px);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.exp-content {
    padding: 10px 10px 20px;
}

.exp-content h3 {
    font-size: 2.2rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.exp-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.8;
}

.exp-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.feat-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    background: var(--color-bg-light);
    padding: 8px 15px;
    border-radius: 50px;
    text-transform: uppercase;
}

.feat-tag i {
    font-size: 1.2rem;
}

.exp-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 2px solid var(--color-bg-light);
    margin-top: auto;
}

.exp-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    opacity: 0.5;
    letter-spacing: 1px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.price-group {
    display: flex;
    flex-direction: column;
}

.price-value small {
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.7;
}

@media (max-width: 576px) {
    .exp-cta {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
        padding-top: 20px;
    }
    
    .exp-price {
        align-items: center;
    }
    
    .exp-cta .btn {
        width: 100%;
        max-width: 320px;
        padding: 16px 30px;
        font-size: 1.1rem;
    }

    .exp-content h3 {
        font-size: 1.8rem;
    }
}



/* =========================================
   LABYRINTH SUMMARY (Home Teaser)
   ========================================= */
.summary-composite {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .summary-composite {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.composite-visual {
    position: relative;
    padding: 20px;
}

.composite-frame {
    position: relative;
    border-radius: var(--radius-leaf);
    overflow: hidden;
    aspect-ratio: 1 / 1.2;
    box-shadow: var(--shadow-hover);
    border: 6px solid var(--color-bg-alt);
    z-index: 5;
}

.composite-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.composite-visual:hover .composite-frame img {
    transform: scale(1.05);
}

.composite-badge {
    position: absolute;
    bottom: -15px;
    right: -10px;
    background: var(--color-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(49, 92, 43, 0.15);
}

/* Feature Tag Pills (Marketing Style) */
.feature-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-secondary);
    border: 1px solid rgba(49, 92, 43, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-tag-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 92, 43, 0.1);
    border-color: var(--color-primary);
}

@media (max-width: 768px) {
    .labyrinth-summary {
        overflow: hidden;
        padding: 50px 0 !important;
    }

    .labyrinth-summary .container {
        padding: 0 25px !important;
        /* Proper safety margins */
    }

    .summary-composite {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .composite-visual {
        padding: 0 10px 30px;
    }

    .composite-frame {
        height: 260px;
        border-radius: 30px;
        box-shadow: 0 15px 35px rgba(49, 92, 43, 0.12);
        border: 4px solid #fff;
    }

    .composite-badge {
        right: 0px;
        bottom: -15px;
        padding: 8px 16px;
        border-radius: 14px;
        box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.1);
        gap: 8px;
    }

    .composite-badge i {
        font-size: 1.4rem;
    }

    .composite-badge span {
        font-size: 0.8rem;
    }

    .composite-leaf-1,
    .composite-leaf-2 {
        display: none;
        /* Cleaner on mobile */
    }

    .composite-text p.section-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .summary-features-row {
        justify-content: center !important;
        gap: 12px !important;
        margin: 30px 0 !important;
    }

    .feature-tag-pill {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    /* Contained Button Design */
    .labyrinth-summary .btn {
        width: auto !important;
        min-width: 260px;
        max-width: 90%;
        margin: 0 auto !important;
        padding: 18px 30px;
        font-size: 1rem;
        display: inline-flex !important;
        justify-content: center;
    }
}

.composite-badge i {
    font-size: 2.5rem;
}

.composite-badge span {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
    font-size: 1.2rem;
}

.composite-badge small {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.composite-leaf-1,
.composite-leaf-2 {
    position: absolute;
    color: var(--color-primary);
    opacity: 0.1;
    z-index: 1;
}

.composite-leaf-1 {
    top: -40px;
    left: -30px;
    font-size: 8rem;
    transform: rotate(-15deg);
}

.composite-leaf-2 {
    bottom: -20px;
    left: 20%;
    font-size: 5rem;
    transform: rotate(45deg);
}

.summary-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background: var(--color-bg-light);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(49, 92, 43, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* =========================================
   PROMOCIONES
   ========================================= */
.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.interactive-box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.interactive-box .promo-icon {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.interactive-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    color: var(--color-neutral);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    transition: bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 10;
}

.interactive-box:hover .interactive-overlay {
    bottom: 0;
}

.interactive-box:hover .promo-icon {
    transform: translateY(-20px) scale(1.1);
}

.service-card {
    background-color: var(--color-neutral);
    padding: 40px 30px;
    border-radius: var(--radius-leaf);
    box-shadow: var(--shadow-flat);
    text-align: center;
    border: 3px solid rgba(49, 92, 43, 0.06);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-img-mini {
    width: 100%;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-img-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-mini img {
    transform: scale(1.1);
}

.promo-box {
    background-color: var(--color-neutral);
    padding: 40px 30px;
    border-radius: var(--radius-leaf);
    /* Hoja temática */
    box-shadow: var(--shadow-flat);
    text-align: center;
    border: 3px solid rgba(49, 92, 43, 0.06);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    will-change: transform;
}

.promo-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary);
}

.promo-box.promo-group {
    background-color: var(--color-earth);
    color: var(--color-neutral);
}

.promo-box.promo-group h4 {
    color: var(--color-neutral);
}

.promo-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-secondary);
    margin: 0 auto 20px auto;
}

.promo-group .promo-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-neutral);
}

/* =========================================
   SERVICIOS (SPLIT MODERN/NATURE)
   ========================================= */
.services-split {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.split-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-leaf);
    /* Temática Safari Hoja */
    margin-bottom: 40px;
    box-shadow: var(--shadow-flat);
    transition: transform 0.3s;
}

.split-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

@media (min-width: 900px) {
    .split-card {
        flex-direction: row;
        height: 400px;
    }

    .split-card.reverse {
        flex-direction: row-reverse;
    }
}

.split-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-alt);
    color: var(--color-text-main);
    font-weight: 600;
    text-align: center;
    min-height: 300px;
    /* Vital for absolute GSAP children on mobile */
}

/* Because .gsap-img is absolute, parent needs height */
.split-img.gsap-parallax {
    position: relative;
    overflow: hidden;
}

.split-img img {
    /* If not using GSAP absolute, ensure base styling */
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.split-text {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-neutral);
}

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

.split-text.bg-forest {
    background-color: var(--color-secondary);
}

.split-text h3 {
    color: var(--color-neutral);
    font-size: 2rem;
}

.split-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.split-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-tertiary);
}

/* =========================================
   LOCATION EXPERIENCE (Interactive Grid)
   ========================================= */
.location-experience {
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.location-interactive-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .location-interactive-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Map Visuals */
.map-visual-container {
    position: relative;
    padding: 20px;
}

.map-frame {
    position: relative;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(49, 92, 43, 0.15);
    border: 6px solid var(--color-bg-alt);
    z-index: 5;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-frame:hover {
    transform: scale(1.01);
    box-shadow: 0 40px 80px rgba(49, 92, 43, 0.2);
}

.map-overlay-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-frame:hover .map-overlay-badge {
    transform: translateX(-50%) translateY(-10px);
    background: var(--color-primary);
    color: #fff;
}

.map-leaf-1,
.map-leaf-2 {
    position: absolute;
    color: var(--color-primary);
    opacity: 0.1;
    z-index: 1;
}

.map-leaf-1 {
    top: -30px;
    left: -20px;
    font-size: 10rem;
    transform: rotate(-20deg);
}

.map-leaf-2 {
    bottom: -40px;
    right: 10%;
    font-size: 7rem;
    transform: rotate(45deg);
}

/* Details Panel */
.location-details-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.address-reveal-card {
    background: var(--color-bg-light);
    padding: 30px;
    border-radius: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: var(--shadow-flat);
    border: 1px solid rgba(49, 92, 43, 0.08);
    transition: all 0.3s ease;
}

.address-reveal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.address-text h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--color-secondary);
}

.address-text p {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* App Selection Grid */
.nav-apps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.nav-app-card {
    padding: 25px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: all 0.35s cubic-bezier(0.2, 1, 0.3, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.nav-app-card:hover {
    transform: translateY(-5px);
}

.nav-app-card.waze {
    background: #f0f7ff;
    color: #33a9ff;
}

.nav-app-card.waze:hover {
    background: #33a9ff;
    color: #fff;
}

.nav-app-card.gmaps {
    background: #fff5f5;
    color: #ea4335;
}

.nav-app-card.gmaps:hover {
    background: #ea4335;
    color: #fff;
}

.nav-app-card i {
    font-size: 2rem;
}

/* Travel Times */
.travel-times-box {
    background: var(--color-secondary);
    padding: 30px;
    border-radius: 24px;
    color: #fff;
    box-shadow: var(--shadow-hover);
}

.travel-times-box h4 {
    color: var(--color-tertiary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.time-item span {
    opacity: 0.8;
    font-weight: 500;
}

.time-item strong {
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

/* WhatsApp CTA */
.whatsapp-cta-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #25d366;
    color: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.35s cubic-bezier(0.2, 1, 0.3, 1);
}

.whatsapp-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
    background: #1fba59;
}

.whatsapp-cta-btn>i:first-child {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.whatsapp-cta-btn>i:last-child {
    margin-left: auto;
    font-size: 1.2rem;
    opacity: 0.7;
}

.whatsapp-cta-btn span {
    display: block;
    font-size: 1rem;
}

.whatsapp-cta-btn small {
    display: block;
    font-weight: 400;
    opacity: 0.85;
    font-size: 0.8rem;
}

/* =========================================
   DUAL LAYOUT (FAQ only now)
   ========================================= */

/* FAQ divider inside Ubicacion */
.ubicacion-faq-divider {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(49, 92, 43, 0.08);
    text-align: center;
}

.ubicacion-faq-divider .section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-top: 10px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}


.contact-data-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-sq {
    width: 60px;
    height: 60px;
    background-color: var(--color-neutral);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.contact-data-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.contact-data-list span {
    color: var(--color-text-main);
    opacity: 0.8;
}

.mt-4 {
    margin-top: 2rem;
}

/* Accordion Clean */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: var(--color-neutral);
    border-radius: 12px;
    box-shadow: var(--shadow-flat);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-secondary);
    cursor: pointer;
    text-align: left;
}

.accordion-header i {
    color: var(--color-primary);
    font-size: 1.4rem;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 20px;
    background-color: var(--color-neutral);
    opacity: 0.8;
}

.accordion-header.active+.accordion-content {
    padding-bottom: 20px;
}

/* =========================================
   SECCIÓN KINDIA (Mística & Sagrada)
   ========================================= */
.kindia-section {
    position: relative;
    padding: 120px 0;
    background-color: #1f2f1d;
    /* Slightly lighter for better contrast */
    color: var(--color-neutral);
    overflow: hidden;
}

.kindia-section::before {
    display: none;
    /* Removed gradient per request */
}

.kindia-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 900px) {
    .kindia-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.kindia-img-wrapper {
    position: relative;
    border-radius: var(--radius-leaf);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(166, 138, 100, 0.3);
    border: 1px solid rgba(166, 138, 100, 0.5);
}

.kindia-content h2 {
    color: var(--color-neutral);
    /* Using flat white for better contrast */
    margin-bottom: 2rem;
}

.kindia-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.kindia-float-icon {
    position: absolute;
    top: -50px;
    right: 10%;
    font-size: 5rem;
    color: var(--color-earth);
    opacity: 0.15;
    animation: floatingFeather 6s ease-in-out infinite;
}

@keyframes floatingFeather {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(20px, 30px) rotate(10deg);
    }

    66% {
        transform: translate(-15px, 15px) rotate(-5deg);
    }
}

.pachamama-quote {
    font-style: italic;
    font-size: 1.4rem;
    border-left: 4px solid var(--color-primary);
    padding-left: 25px;
    margin: 2rem 0;
    color: var(--color-tertiary);
}

/* Laberinto Rekord */
.labyrinth-badge {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(92, 158, 71, 0.3);
}

.compass-icon {
    font-size: 4rem;
    color: var(--color-earth);
    transition: transform 0.1s linear;
    display: inline-block;
}

/* =========================================
   INNER PAGE HEROES (Premium Design)
   ========================================= */
.inner-hero {
    position: relative;
    padding: 200px 0 140px;
    background-color: var(--color-primary);
    overflow: hidden;
    color: #fff;
    text-align: center;
}

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

.inner-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.8) contrast(1.1);
}

.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(49, 92, 43, 0.95) 0%,
            rgba(49, 92, 43, 0.7) 50%,
            rgba(49, 92, 43, 0.4) 100%);
    z-index: 2;
}

.inner-hero .container {
    position: relative;
    z-index: 10;
}

.inner-hero .section-subtitle {
    color: var(--color-tertiary);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.inner-hero h1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    /* For SplitType */
}

.inner-hero p.lead {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 500;
}

.hero-floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Wave for Inner Page Hero */
.inner-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    fill: var(--color-bg-light);
    opacity: 0.6;
    z-index: 5;
    pointer-events: none;
}

/* =========================================
   SOBRE EL PARQUE / BIENVENIDA
   ========================================= */
.footer {
    background-color: #0d1a0d;
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    padding: 80px 20px 60px 20px;
}

@media (min-width: 768px) {
    .footer-top {
        display: flex;
        justify-content: space-between;
        gap: 60px;
    }

    .footer-brand {
        width: 35%;
    }

    .footer-links-group {
        display: flex;
        gap: 80px;
        width: 60%;
    }
}

.footer-logo {
    height: 90px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .footer-logo {
        height: 70px;
        margin-bottom: 20px;
    }
}

.footer-brand p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--color-primary);
    color: white;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--color-tertiary);
    padding-left: 5px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
}


/* =========================================
   CREATIVE ORGANIC LAYOUT (Elite Aesthetic)
   ========================================= */

/* =========================================
   LUX-FLORAL EDITORIAL LAYOUT
   ========================================= */

.lux-editorial-grid {
    display: flex;
    flex-direction: column;
    gap: 150px;
    margin-top: 80px;
}

.editorial-row {
    display: flex;
    align-items: center;
    gap: 100px;
    position: relative;
}

.editorial-row.reverse {
    flex-direction: row-reverse;
}

/* Visual Layer */
.editorial-visual {
    flex: 1.3;
    position: relative;
    z-index: 2;
}

.editorial-number {
    position: absolute;
    top: -60px;
    left: -40px;
    font-family: var(--font-heading);
    font-size: 12rem;
    color: var(--color-primary);
    opacity: 0.05;
    line-height: 1;
    z-index: -1;
}

.editorial-row.reverse .editorial-number {
    left: auto;
    right: -40px;
}

.botanical-frame-svg {
    position: absolute;
    inset: -30px;
    z-index: 1;
    pointer-events: none;
}

.editorial-img-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 60% 40% 70% 30% / 40% 50% 60% 70%;
    box-shadow: 0 40px 80px rgba(49, 92, 43, 0.15);
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    transform-style: preserve-3d;
    filter: saturate(1.1) brightness(1.05);
    will-change: transform, border-radius;
    /* Hardware acceleration */
}

.editorial-img-secondary {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.editorial-row:hover .editorial-img-main {
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    transform: scale(1.05) rotate(1deg) translateY(-10px);
    box-shadow: 0 60px 100px rgba(49, 92, 43, 0.25);
}

/* Metadata Tags */
.glass-pill-tag {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--color-secondary);
    z-index: 10;
    animation: floatingInner 4s ease-in-out infinite;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .glass-pill-tag {
        right: 10px;
        bottom: 20px;
        padding: 10px 20px;
    }

    .editorial-number {
        font-size: 8rem;
        left: 0;
        top: -40px;
    }

    .botanical-frame-svg {
        inset: -10px;
    }

    .botanical-bg-watermark {
        width: 100%;
        right: 0;
        top: 0;
        opacity: 0.02;
    }
}

@keyframes floatingInner {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.floating-metadata-box {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    background: var(--color-secondary);
    color: white;
    padding: 45px;
    border-radius: var(--radius-leaf);
    box-shadow: 25px 25px 0 var(--color-tertiary);
    text-align: center;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s var(--transition-fast);
}

.floating-metadata-box:hover {
    transform: translateY(-55%) rotate(2deg);
    box-shadow: 35px 35px 0 var(--color-primary);
}

.floating-metadata-box strong {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    line-height: 1;
}

/* Content Layer */
.editorial-content {
    flex: 1;
    z-index: 3;
}

.content-overline {
    display: block;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 800;
    color: var(--color-earth);
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.editorial-content h3 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.editorial-features {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-secondary);
    background: var(--color-bg-alt);
    padding: 8px 15px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Standard buttons used in HTML, custom buttons removed */

/* Background Watermark */
.botanical-bg-watermark {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 600px;
    pointer-events: none;
    z-index: 0;
}

/* Responsive Editorial */
@media (max-width: 1024px) {

    .editorial-row,
    .editorial-row.reverse {
        flex-direction: column;
        gap: 50px;
        text-align: center;
        overflow: visible;
        /* Let numbers and badges float correctly */
    }

    .lux-editorial-grid {
        gap: 80px;
        margin-top: 50px;
    }

    .editorial-visual {
        width: 100%;
        padding: 0;
        margin-bottom: 25px;
        position: relative;
    }

    .editorial-img-main,
    .editorial-img-secondary {
        height: 300px;
        aspect-ratio: 16 / 9;
        border-radius: 24px;
        width: 100%;
        max-width: none;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .editorial-row:hover .editorial-img-main {
        transform: none;
        /* Keep it stable on touch */
    }

    .editorial-content {
        padding: 0 15px;
        text-align: center;
    }

    .content-overline {
        font-size: 0.75rem;
        letter-spacing: 4px;
        margin-bottom: 5px;
        opacity: 0.8;
    }

    .editorial-content h3 {
        font-size: 2rem;
        margin-bottom: 15px;
        color: var(--color-secondary);
        letter-spacing: -0.5px;
    }

    .editorial-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        opacity: 0.85;
    }

    .editorial-features {
        justify-content: center;
        gap: 8px;
        margin: 15px 0 25px;
    }

    .feature-item {
        font-size: 0.75rem;
        padding: 6px 14px;
        background: white;
        border: 1px solid var(--color-tertiary);
        color: var(--color-secondary);
    }

    .glass-pill-tag {
        position: absolute;
        bottom: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.95);
        border: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        color: var(--color-primary);
        font-weight: 700;
        letter-spacing: 0;
        font-size: 0.75rem;
    }

    .editorial-number {
        font-size: 5rem;
        opacity: 0.05;
        top: -40px;
        color: var(--color-secondary);
    }

    .botanical-frame-svg,
    .botanical-bg-watermark {
        display: none;
    }
}

.floating-metadata-box {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    margin: -40px auto 0;
    max-width: 200px;
}

/* Editorial Typography & Metadata */
.editorial-index {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 10rem;
    font-weight: 900;
    color: var(--color-primary);
    opacity: 0.04;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.vertical-tag {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: var(--color-primary);
    opacity: 0.3;
    white-space: nowrap;
}

/* Organic Masks & Shapes */
.mask-leaf {
    border-radius: 40% 10% 40% 10%;
    transition: all 0.6s var(--transition-main);
}

.mask-leaf:hover {
    border-radius: 10% 40% 10% 40%;
}

/* --- Elite Lodging Showcase --- */
.lodging-gateway {
    background-color: var(--color-bg-light);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.lodging-mosaic-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.mosaic-main {
    position: relative;
    z-index: 2;
}

.mosaic-img-full {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 15% 40% 10% 30%;
    box-shadow: 40px 40px 0 var(--color-bg-alt);
    transition: all 0.8s var(--transition-main);
    filter: drop-shadow(0 20px 40px rgba(49, 92, 43, 0.15));
}

.mosaic-main:hover .mosaic-img-full {
    border-radius: 40% 15% 30% 10%;
    transform: scale(1.02);
}

.mosaic-floating-card {
    position: absolute;
    bottom: -30px;
    right: -60px;
    background: white;
    padding: 50px;
    border-radius: var(--radius-leaf);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    z-index: 10;
    border: 1px solid rgba(49, 92, 43, 0.05);
}

.mosaic-side {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.side-item img {
    height: 380px;
}

/* Botanical Accents */
.botanical-overlay {
    position: absolute;
    width: 250px;
    height: 250px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

.botanical-overlay.bottom-left {
    bottom: -80px;
    left: -80px;
}

/* Responsive Elite Layout */
@media (max-width: 1200px) {
    .mosaic-floating-card {
        right: -20px;
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .lodging-mosaic-grid {
        grid-template-columns: 1fr;
        gap: 100px;
    }

    .mosaic-img-full {
        height: 450px;
        box-shadow: 20px 20px 0 var(--color-bg-alt);
    }

    .mosaic-floating-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin: -60px 20px 0;
        max-width: none;
    }

    .vertical-tag {
        display: none;
    }

    .editorial-index {
        font-size: 6rem;
    }
}

/* Page: Hospedaje (Offset Layout) */
.offset-section {
    padding: 120px 0;
}

.offset-card {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 150px;
}

.offset-card.reverse {
    flex-direction: row-reverse;
}

.offset-main-img {
    width: 100%;
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.1));
    transition: transform 0.6s ease;
}

.offset-card:hover .offset-main-img {
    transform: rotate(2deg) scale(1.02);
}

.offset-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.soft-glow-img {
    filter: saturate(1.1) contrast(1.05) brightness(1.05);
}

/* =========================================
   RESPONSIVE DESIGN (MOBILE ADAPTATION)
   ========================================= */
@media (max-width: 768px) {

    /* Base typography & spacing */
    .section-title {
        font-size: clamp(2.5rem, 9vw, 3.2rem) !important;
        margin-bottom: 0.5rem;
    }

    .section-title[data-watermark]::before {
        font-size: clamp(3rem, 15vw, 5rem) !important;
        top: -10px !important;
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 4rem) !important;
        line-height: 1 !important;
    }

    p.hero-subtitle {
        font-size: 1.1rem;
        padding-bottom: 15px;
    }

    .section-padding {
        padding: 40px 0 !important;
        margin-top: 5px !important;
    }

    .container {
        padding: 0 20px;
    }

    /* Buttons */
    .btn {
        width: 100%;
        margin-bottom: 10px;
        padding: 14px 20px;
        font-size: 1rem;
        justify-content: center;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    /* Navbar fixes */
    .nav-links.active {
        padding: 20px;
    }

    .nav-link {
        font-size: 1.3rem !important;
        padding: 15px 0 !important;
    }

    /* Badges & Decorators */
    .badges-container {
        flex-direction: column;
        align-items: stretch;
    }

    .badge-thematic {
        justify-content: center;
    }

    .hero-badge {
        display: none;
        /* Hide on very small screens to avoid overflow layout breaking */
    }

    /* Layout fixes */
    .about-container {
        gap: 30px;
    }

    .blob-frame {
        height: 350px !important;
    }

    .promos-grid {
        grid-template-columns: 1fr;
    }

    .location-interactive-grid {
        grid-template-columns: 1fr;
    }

    .map-frame {
        height: 300px;
    }

    .summary-composite {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .composite-visual {
        padding: 10px 0 30px;
    }

    .composite-frame {
        height: 300px;
        border-radius: 30px;
    }

    .editorial-row {
        flex-direction: column !important;
        gap: 30px;
        overflow: hidden;
        /* Prevent internal elements from overflowing */
    }

    .editorial-visual {
        width: 100%;
        overflow: hidden;
        padding: 20px 0;
    }

    .kindia-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile Fixes */
    .footer-top {
        padding: 40px 20px;
        text-align: left;
    }

    .footer-brand {
        margin-bottom: 40px;
    }

    .footer-links-group {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        margin-bottom: 10px;
    }

    .footer-col h4 {
        margin-bottom: 15px;
    }

    .footer-bottom {
        padding: 20px 15px;
    }
}

/* =========================================
   SKELETON LOADERS (Safari & Android Optimized)
   ========================================= */
.skeleton-box {
    position: relative;
    overflow: hidden;
    background-color: #e2e8f0;
    z-index: 10;
}

.skeleton-box::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: skeleton-shimmer 1.8s infinite;
    will-change: transform;
}

@keyframes skeleton-shimmer {
    100% {
        transform: translateX(100%);
    }
}

.img-loading {
    filter: blur(10px);
    transition: filter 0.6s ease;
    opacity: 0.5;
}

.img-loaded {
    filter: blur(0);
    opacity: 1;
}

/* =========================================
   MODULO FAMILIAR - PREMIUM TRIBE DESIGN
   ========================================= */
/* =========================================
   MODULO FAMILIAR - MODERN HERO SPLIT
   ========================================= */
.family-modern-hero {
    padding: 100px 0;
    background: var(--color-bg-light);
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.family-hero-card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(49, 92, 43, 0.1);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 700px;
}

.family-gallery-box {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.family-gallery-box .swiper {
    width: 100%;
    height: 100%;
}

.family-gallery-box .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tribe-badge-minimal {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--color-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.tribe-badge-minimal span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tribe-badge-minimal strong {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    line-height: 1;
}

.family-hero-content {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.family-hero-content .section-title {
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    margin-bottom: 25px;
}

.family-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.benefit-item-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--color-bg-light);
    border-radius: 24px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-item-modern:hover {
    transform: translateX(10px);
    background: #fff;
    box-shadow: var(--shadow-flat);
}

.benefit-item-modern i {
    font-size: 1.8rem;
    color: #fff;
    background: var(--color-primary);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
}

.benefit-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    color: var(--color-secondary);
}

.benefit-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.8;
}

.price-tribes-row {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.price-pill-tribe {
    background: var(--color-secondary);
    color: white;
    padding: 15px 25px;
    border-radius: 20px;
    flex: 1;
    text-align: center;
}

.price-pill-tribe span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    font-weight: 700;
}

.price-pill-tribe strong {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

@media (max-width: 1200px) {
    .family-hero-content {
        padding: 50px;
    }
}

@media (max-width: 991px) {
    .family-modern-hero {
        padding: 60px 0;
    }

    .family-hero-card {
        grid-template-columns: 1fr;
        border-radius: 30px;
        min-height: auto;
    }

    .family-gallery-box {
        height: 450px;
    }

    .family-hero-content {
        padding: 60px 30px;
        text-align: center;
    }

    .family-hero-content .section-subtitle {
        justify-content: center;
    }

    .family-benefit-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .benefit-item-modern {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .benefit-item-modern i {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .family-benefit-list {
        grid-template-columns: 1fr;
    }

    .price-tribes-row {
        flex-direction: column;
    }

    .family-gallery-box {
        height: 300px;
    }
}

/* =========================================
   MODERN GALLERY GRID (Global)
   ========================================= */
/* =========================================
   MODERN GALLERY GRID (Global)
   ========================================= */
.modern-gallery-grid {
    columns: 3 320px;
    column-gap: 25px;
    margin-top: 60px;
}

.gallery-item-wrap {
    break-inside: avoid;
    margin-bottom: 25px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Sombra más sutil y moderna */
    border: 1px solid rgba(49, 92, 43, 0.05);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    background: #fff;
    transform: translateZ(0);
}

.gallery-item-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-info-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(49, 92, 43, 0.9) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 5;
}

.gallery-info-overlay h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.gallery-info-overlay span {
    color: var(--color-tertiary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.gallery-item-wrap:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(49, 92, 43, 0.15);
}

.gallery-item-wrap:hover img {
    transform: scale(1.08);
}

.gallery-item-wrap:hover .gallery-info-overlay {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .modern-gallery-grid {
        columns: 2 280px;
        column-gap: 15px;
        margin-top: 40px;
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .modern-gallery-grid {
        columns: 2; /* Dos columnas incluso en móviles pequeños para estilo Pinterest */
        padding: 0 10px;
        column-gap: 12px;
    }
    
    .gallery-item-wrap {
        margin-bottom: 12px;
        border-radius: 12px; /* Radios más pequeños para grids densos */
    }

    .gallery-info-overlay {
        padding: 12px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 40%);
        /* En móvil dejamos los títulos visibles o muy sutiles para no tapar la foto */
        opacity: 1;
        transform: translateY(0);
    }
    
    .gallery-info-overlay h4 {
        font-size: 0.85rem;
    }
    
    .gallery-info-overlay span {
        display: none; /* Ocultamos el tag en móvil para limpiar el diseño */
    }
}

/* Gastronomy Section (Experiencias) */
.gastronomy-section {
    margin-top: 80px; 
    background: #fff; 
    border-radius: 30px; 
    padding: 50px; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.gastronomy-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 40px; 
    align-items: center;
}

.gastronomy-title {
    font-family: var(--font-heading); 
    font-size: 2.5rem; 
    color: var(--color-secondary); 
    margin: 15px 0;
}

.gastronomy-desc {
    margin-bottom: 25px; 
    opacity: 0.8;
}

.menu-highlight {
    background: var(--color-bg-alt); 
    padding: 25px; 
    border-radius: 20px; 
    border-left: 5px solid var(--color-primary);
}

.menu-highlight-title {
    font-family: var(--font-heading); 
    margin-bottom: 15px;
}

.menu-list {
    list-style: none; 
    padding: 0;
}

.menu-list li {
    margin-bottom: 10px;
}

.menu-list i {
    color: var(--color-primary);
}

.important-note-box {
    background: var(--color-secondary); 
    color: #fff; 
    padding: 40px; 
    border-radius: 25px; 
    position: relative; 
    overflow: hidden;
}

.note-icon {
    position: absolute; 
    top: -20px; 
    right: -20px; 
    font-size: 8rem; 
    opacity: 0.1;
}

.note-title {
    font-family: var(--font-heading); 
    margin-bottom: 20px;
    color: #fff;
}

.note-text {
    opacity: 0.9; 
    margin-bottom: 20px;
}

.note-footer {
    display: flex; 
    gap: 15px; 
    align-items: center;
}

.footer-icon {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .gastronomy-section {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .gastronomy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gastronomy-title {
        font-size: 2rem;
    }

    .important-note-box {
        padding: 30px 20px;
    }
}