/* Variables: public/css/design-tokens.css (enlazado antes desde home.php) */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body), var(--font-ui), system-ui, sans-serif;
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
        }

        /* Animaciones modernas */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: translateY(24px) scale(0.97);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        @keyframes glowPulse {
            0%, 100% { box-shadow: 0 10px 40px rgba(0, 217, 217, 0.3); }
            50% { box-shadow: 0 10px 50px rgba(0, 217, 217, 0.45); }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

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

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes float {

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

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

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .animate-fadeInUp {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .animate-fadeInLeft {
            animation: fadeInLeft 0.8s ease-out forwards;
        }

        .animate-fadeInRight {
            animation: fadeInRight 0.8s ease-out forwards;
        }

        .delay-1 {
            animation-delay: 0.1s;
        }

        .delay-2 {
            animation-delay: 0.2s;
        }

        .delay-3 {
            animation-delay: 0.3s;
        }

        .delay-4 {
            animation-delay: 0.4s;
        }

        .delay-5 {
            animation-delay: 0.5s;
        }

        /* Header: estilos en site-public.css + partial public-chrome-header.php */

        /* Hero Section - Carrusel con transiciones variadas, luminosidad original */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-carousel {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-carousel-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1s ease-out;
        }
        .hero-carousel-slide.active {
            opacity: 1;
            z-index: 1;
        }
        /* Transiciones variadas por slide */
        .hero-carousel-slide.transition-fade.active {
            transition: opacity 1.2s ease-in-out;
        }
        .hero-carousel-slide.transition-slide-left {
            transform: translateX(100%);
        }
        .hero-carousel-slide.transition-slide-left.active {
            transform: translateX(0);
            transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 1;
            z-index: 1;
        }
        .hero-carousel-slide.transition-slide-right {
            transform: translateX(-100%);
        }
        .hero-carousel-slide.transition-slide-right.active {
            transform: translateX(0);
            transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 1;
            z-index: 1;
        }
        .hero-carousel-slide.transition-zoom {
            transform: scale(1.15);
        }
        .hero-carousel-slide.transition-zoom.active {
            transform: scale(1);
            transition: transform 1.4s ease-out, opacity 1s ease-out;
            opacity: 1;
            z-index: 1;
        }
        .hero-carousel-slide.transition-blur {
            filter: blur(8px);
            transform: scale(1.05);
        }
        .hero-carousel-slide.transition-blur.active {
            filter: blur(0);
            transform: scale(1);
            transition: filter 1.2s ease-out, transform 1.2s ease-out, opacity 1s ease-out;
            opacity: 1;
            z-index: 1;
        }
        /* Overlay desactivado para que el fondo del banner se vea más nítido en producción */
        .hero::after {
            content: none;
        }
        @media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
            .hero-carousel-slide { background-size: cover; }
        }

        /* Dots del carrusel hero */
        .hero-dots {
            position: absolute;
            bottom: 5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
            z-index: 3;
        }

        .hero-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: transform 0.3s ease, background 0.3s ease, width 0.3s ease;
        }

        .hero-dot:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: scale(1.15);
        }

        .hero-dot.active {
            background: var(--primary);
            border-color: var(--secondary);
            width: 28px;
            border-radius: 5px;
        }

        @media (max-width: 768px) {
            .hero-dots {
                bottom: 4rem;
                gap: 0.35rem;
            }
            .hero-dot {
                width: 8px;
                height: 8px;
            }
            .hero-dot.active { width: 20px; }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-carousel-slide,
            .hero-content,
            .stat-card,
            .destination-card {
                transition-duration: 0.01ms !important;
                animation: none !important;
            }

            .sf-digit__f3d {
                -webkit-transition-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin-left: max(0.75rem, env(safe-area-inset-left, 0px));
            margin-right: auto;
            padding: 0;
            opacity: 0;
            animation: fadeInLeft 1s ease-out 0.3s forwards;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }

        /* Dos máscaras compactas: solo el bloque del título y solo el del párrafo */
        .hero-read-panel {
            width: max-content;
            max-width: 100%;
            box-sizing: border-box;
            background: rgba(15, 23, 42, 0.26);
            -webkit-backdrop-filter: blur(18px) saturate(1.15);
            backdrop-filter: blur(18px) saturate(1.15);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
        }

        .hero-read-panel--headline {
            padding: 0.65rem 1rem 0.75rem;
        }

        .hero-read-panel--sub {
            padding: 0.75rem 1rem 0.85rem;
        }

        /* Misma máscara que título / párrafo, solo alrededor de “Explorar Destinos” (sin borde exterior) */
        .hero-read-panel--cta {
            width: max-content;
            max-width: 100%;
            padding: 0.4rem 0.5rem;
            border: none;
        }

        .hero-read-panel--cta .btn {
            margin: 0;
        }

        .hero-read-panel--cta .btn-secondary {
            background: transparent;
            -webkit-backdrop-filter: none;
            backdrop-filter: none;
            border: none;
            box-shadow: none;
        }

        .hero-read-panel--cta .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            border: none;
            transform: translateY(-2px);
        }

        @media (prefers-reduced-transparency: reduce) {
            .hero-read-panel {
                -webkit-backdrop-filter: none;
                backdrop-filter: none;
                background: rgba(15, 23, 42, 0.58);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 900;
            color: white;
            line-height: 1.1;
            margin: 0;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.55), 0 6px 28px rgba(0, 0, 0, 0.4);
        }

        /* Degradado en el texto: drop-shadow para que no se pierda sobre fondos claros */
        .hero h1 span {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 16px rgba(0, 0, 0, 0.45));
        }

        .hero p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 550px;
            margin: 0;
            line-height: 1.7;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65), 0 2px 16px rgba(0, 0, 0, 0.45);
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--gradient-primary);
            background-size: 200% 200%;
            color: var(--dark);
            box-shadow: 0 10px 40px rgba(0, 217, 217, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 217, 217, 0.45);
            animation: glowPulse 2s ease-in-out infinite;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.35);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.95);
            color: var(--dark);
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.9);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
            animation: float 2s ease-in-out infinite;
        }

        .scroll-indicator .mouse {
            width: 26px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 13px;
            position: relative;
        }

        .scroll-indicator .mouse::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: var(--primary);
            border-radius: 2px;
            animation: scroll 2s ease-in-out infinite;
        }

        @keyframes scroll {

            0%,
            100% {
                opacity: 1;
                top: 8px;
            }

            50% {
                opacity: 0.5;
                top: 18px;
            }
        }

        /* Stats Section — fondo foto cielo (HD local: images/stats-section-sky.jpg) */
        .stats-section {
            background-color: #87b8e8;
            background-image: url('../../images/stats-section-sky.jpg');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center 28%;
            padding: 3rem 3rem;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* Velo suave: mantiene legible el texto negro sobre el cielo sin tapar la foto */
            background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.12) 0%,
                rgba(255, 255, 255, 0.06) 35%,
                rgba(248, 252, 255, 0.28) 100%
            );
            pointer-events: none;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .stat-card {
            text-align: center;
            padding: 1.5rem;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.86);
            border: 1px solid rgba(255, 255, 255, 0.95);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(15, 40, 70, 0.12);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease, box-shadow 0.4s ease;
        }

        .stat-card:hover {
            background: rgba(255, 255, 255, 0.95);
            transform: translateY(-8px);
            box-shadow: 0 20px 44px rgba(15, 40, 70, 0.18);
        }

        .stat-icon {
            margin-bottom: 0.75rem;
            display: flex;
            justify-content: center;
        }

        .stat-icon svg {
            width: 36px;
            height: 36px;
            stroke: #0a0a0a;
            stroke-width: 1.5;
            fill: none;
        }

        .stat-value {
            font-size: 2.25rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.35rem;
        }

        /* Contadores split-flap (tablero aeropuerto) */
        .visually-hidden {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        .stat-value-flap {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 0.35rem 0.45rem;
            margin-bottom: 0.35rem;
            min-height: 2.75rem;
        }

        /* Fila horizontal explícita: sin esto, algunos WebKit tratan los .sf-digit como bloque y apilan los números */
        .stat-flap-digits {
            display: -webkit-inline-flex;
            display: inline-flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
            -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            gap: 0.28rem;
            max-width: 100%;
        }

        .stat-flap-suffix {
            font-size: 1.65rem;
            font-weight: 800;
            line-height: 1;
            color: #0a0a0a;
            -webkit-text-fill-color: #0a0a0a;
            letter-spacing: -0.02em;
        }

        .sf-digit {
            --sf-h: 2.45rem;
            --sf-w: 1.32rem;
            position: relative;
            display: block;
            -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
            flex: 0 0 auto;
            width: var(--sf-w);
            min-width: var(--sf-w);
            height: var(--sf-h);
            min-height: var(--sf-h);
            border-radius: 7px;
            background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
            border: 1px solid rgba(15, 23, 42, 0.12);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.95),
                0 4px 12px rgba(15, 23, 42, 0.08);
            overflow: hidden;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            isolation: isolate;
        }

        .sf-digit__u {
            position: relative;
            height: 50%;
            overflow: hidden;
            background: linear-gradient(180deg, #f8fafc 0%, #e8edf3 100%);
            border-bottom: 1px solid rgba(15, 23, 42, 0.1);
            box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.6);
        }

        .sf-digit__uch {
            display: block;
            width: 100%;
            height: var(--sf-h);
            line-height: var(--sf-h);
            text-align: center;
            font-size: calc(var(--sf-h) * 0.68);
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            color: #0a0a0a;
            text-shadow: none;
        }

        .sf-digit__lw {
            position: relative;
            height: 50%;
            perspective: 560px;
            perspective-origin: 50% 0;
        }

        .sf-digit__f3d {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 100%;
            -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
            transform-origin: top center;
            -webkit-transform: rotateX(0deg) translateZ(0);
            transform: rotateX(0deg) translateZ(0);
            /* Duración y curva alineadas con FLIP_MS en public/js/stat-split-flap.js */
            -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.33, 0.82, 0.24, 1);
            transition: transform 0.1s cubic-bezier(0.33, 0.82, 0.24, 1);
        }

        .sf-digit__f3d--flip {
            will-change: transform;
            -webkit-transform: rotateX(-180deg) translateZ(0);
            transform: rotateX(-180deg) translateZ(0);
        }

        .sf-digit__face {
            position: absolute;
            inset: 0;
            overflow: hidden;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            background: linear-gradient(180deg, #eef2f7 0%, #e2e8f0 100%);
        }

        .sf-digit__face--a {
            -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
            z-index: 2;
        }

        .sf-digit__face--b {
            -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
            z-index: 1;
        }

        .sf-digit__face--a .sf-digit__lch {
            display: block;
            width: 100%;
            height: var(--sf-h);
            line-height: var(--sf-h);
            text-align: center;
            font-size: calc(var(--sf-h) * 0.68);
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            color: #0a0a0a;
            text-shadow: none;
            -webkit-transform: translateY(calc(var(--sf-h) * -0.5));
            transform: translateY(calc(var(--sf-h) * -0.5));
        }

        .sf-digit__face--b .sf-digit__lch {
            display: block;
            width: 100%;
            height: var(--sf-h);
            line-height: var(--sf-h);
            text-align: center;
            font-size: calc(var(--sf-h) * 0.68);
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            color: #0a0a0a;
            text-shadow: none;
            -webkit-transform: rotateX(180deg) translateY(calc(var(--sf-h) * -0.5));
            transform: rotateX(180deg) translateY(calc(var(--sf-h) * -0.5));
        }

        /* Etiquetas bajo los contadores (legibles sobre cielo) */
        .stats-section .stat-label {
            display: inline-block;
            margin-top: 0.45rem;
            max-width: 100%;
            padding: 0.18rem 0.85rem;
            font-family: ui-monospace, 'Cascadia Mono', 'Segoe UI Mono', 'SFMono-Regular', Menlo, Consolas, monospace;
            font-size: 0.9rem;
            font-weight: 600;
            line-height: 1.08;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: #0a0a0a;
            text-align: center;
            text-shadow: none;
            background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
            border: 1px solid rgba(15, 23, 42, 0.12);
            border-radius: 4px;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                0 2px 8px rgba(15, 23, 42, 0.06);
            position: relative;
            overflow: hidden;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
            -webkit-hyphens: auto;
        }

        .stats-section .stat-label__inner {
            position: relative;
            z-index: 1;
        }

        .stats-section .stat-label::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image:
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(15, 23, 42, 0.04) 2px,
                    rgba(15, 23, 42, 0.04) 3px
                ),
                linear-gradient(
                    90deg,
                    rgba(148, 163, 184, 0.08) 0%,
                    transparent 38%,
                    transparent 62%,
                    rgba(148, 163, 184, 0.08) 100%
                );
            pointer-events: none;
            opacity: 0.65;
            border-radius: inherit;
        }

        /* Destinations Section */
        .destinations-section {
            padding: 6rem 3rem;
            background: var(--light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s ease-out, transform 0.7s ease-out;
        }

        .section-header.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .section-badge {
            display: inline-block;
            background: var(--gradient-primary);
            color: var(--dark);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .destination-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            height: 400px;
            cursor: pointer;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
        }

        .destination-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 32px 64px rgba(10, 37, 64, 0.25);
        }

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

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

        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(transparent, rgba(10, 37, 64, 0.95));
            color: white;
            transform: translateY(30px);
            transition: all 0.4s;
        }

        .destination-card:hover .destination-overlay {
            transform: translateY(0);
        }

        .destination-category {
            display: inline-block;
            background: var(--primary);
            color: var(--dark);
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }

        .destination-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .destination-desc {
            font-size: 0.9rem;
            opacity: 0.8;
            line-height: 1.5;
        }

        .destination-arrow {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.4s;
        }

        .destination-card:hover .destination-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        .view-all-container {
            text-align: center;
            margin-top: 3rem;
        }

        /* Features — zigzag texto | imagen
           Especificidad .features-section evita que otros CSS anulen el grid en producción.
           Breakpoint 768px (no 960): con escala de pantalla en Windows muchos “escritorio”
           quedan bajo 960px CSS px y se veía todo apilado como móvil. */
        .features-section {
            padding: 6rem 0 5rem;
            background: #fff;
        }

        .features-section__intro {
            padding: 0 clamp(1.25rem, 4vw, 3rem) 3.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .features-section .features-zigzag {
            width: 100%;
        }

        .features-section .feature-strip {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            align-items: stretch;
            max-width: 1320px;
            margin: 0 auto;
            min-height: clamp(280px, 42vw, 420px);
            border-top: 1px solid rgba(15, 23, 42, 0.06);
            transition: box-shadow 0.35s ease, transform 0.35s ease;
            overflow: hidden;
            background: #fff;
        }

        .features-section .feature-strip:last-child {
            border-bottom: 1px solid rgba(15, 23, 42, 0.06);
        }

        .features-section .feature-strip:hover {
            box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
        }

        .features-section .feature-strip__copy {
            padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #fff;
            min-width: 0;
        }

        .features-section .feature-strip__title {
            font-size: clamp(1.35rem, 2.5vw, 1.85rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #0f172a;
            margin: 0 0 1.1rem;
            line-height: 1.2;
        }

        .features-section .feature-strip__desc {
            margin: 0;
            font-size: clamp(0.98rem, 1.35vw, 1.08rem);
            line-height: 1.75;
            color: #475569;
            max-width: 34rem;
        }

        .features-section .feature-strip__visual {
            position: relative;
            min-height: clamp(240px, 38vw, 400px);
            background: #e2e8f0;
            min-width: 0;
        }

        .features-section .feature-strip__img {
            width: 100%;
            height: 100%;
            min-height: inherit;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .features-section .feature-strip--reverse .feature-strip__copy {
            grid-column: 2;
            grid-row: 1;
        }

        .features-section .feature-strip--reverse .feature-strip__visual {
            grid-column: 1;
            grid-row: 1;
        }

        @media (max-width: 768px) {
            .features-section .feature-strip {
                grid-template-columns: 1fr;
                min-height: 0;
            }

            .features-section .feature-strip--reverse .feature-strip__copy,
            .features-section .feature-strip--reverse .feature-strip__visual {
                grid-column: auto;
                grid-row: auto;
            }

            .features-section .feature-strip__visual {
                min-height: 220px;
                order: -1;
            }

            .features-section .feature-strip--reverse .feature-strip__visual {
                order: -1;
            }
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 3rem;
            position: relative;
            overflow: hidden;
            background: var(--home-cta-bg) center center / cover no-repeat;
        }

        .cta-section::before {
            display: none;
        }

        .cta-content {
            max-width: 800px;
            margin: 0;
            text-align: left;
            position: relative;
            z-index: 2;
            padding-left: 5%;
        }

        .cta-content h2 {
            font-size: 3rem;
            font-weight: 800;
            color: #000000;
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            color: #000000;
            margin-bottom: 2.5rem;
        }

        @media (max-width: 1024px) {

            .quoter-cta-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .quoter-cta-text h2 {
                font-size: 2rem;
            }
        }

        /* Footer — más compacto; columnas alineadas arriba (evita franja vacía bajo enlaces) */
        .footer {
            --footer-body-font-size: 0.9375rem;
            --footer-body-line-height: 1.6;
            background: var(--dark);
            color: white;
            padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 1.5rem;
        }

        .footer-content {
            max-width: 1120px;
            margin: 0 auto;
            display: grid;
            /* 4ª columna (Contacto): mínimo para correo largo en una línea */
            grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr) minmax(0, 1fr) minmax(13.5rem, 1fr) minmax(0, 1.1fr);
            gap: clamp(1.5rem, 3.5vw, 2.25rem);
            align-items: start;
        }

        /* min-width:0 evita desbordes raros del grid en columnas con mucho texto */
        .footer-content > div {
            min-width: 0;
        }

        .footer-content > div:last-child {
            max-width: 280px;
            justify-self: end;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            margin-top: 0.75rem;
            line-height: var(--footer-body-line-height);
            font-size: var(--footer-body-font-size);
        }

        .footer-brand .footer-brand-legal {
            margin-top: 1rem;
            font-size: var(--footer-body-font-size);
            line-height: var(--footer-body-line-height);
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-title {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary);
            font-size: 0.95rem;
            letter-spacing: 0.02em;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            max-width: 100%;
            font-size: var(--footer-body-font-size);
            line-height: var(--footer-body-line-height);
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: break-word;
        }

        /* Correo: una sola línea (evita word-break del enlace genérico que parte en mitad del dominio) */
        .footer-links a.footer-link-email {
            white-space: nowrap;
            max-width: none;
            word-break: normal;
            overflow-wrap: normal;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-bottom {
            max-width: 1120px;
            margin: 2rem auto 0;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

        .social-icon:hover {
            background: var(--primary) !important;
            transform: translateY(-3px);
        }

        .social-icon:hover svg {
            stroke: var(--dark) !important;
        }

        .footer-legal a:hover {
            color: var(--primary) !important;
        }

        .office-location-card {
            background: transparent;
            border-radius: 0;
            padding: 0;
            box-shadow: none;
            border: none;
        }

        .office-location-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 0.25rem;
            color: var(--primary);
        }

        .office-location-title-icon {
            width: 26px;
            height: 26px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(34, 197, 178, 0.15);
        }

        .office-location-title-icon svg {
            width: 16px;
            height: 16px;
            stroke: #2dd4bf;
            stroke-width: 2;
            fill: none;
        }

        /* Dirección a la izquierda, botón Maps pegado a la derecha de la columna */
        .office-location-row {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: space-between;
            gap: 0.75rem 1rem;
            margin-top: 0.85rem;
        }

        .office-address {
            margin: 0;
            flex: 1 1 min(100%, 11rem);
            min-width: 0;
            font-size: var(--footer-body-font-size);
            color: rgba(255, 255, 255, 0.6);
            line-height: var(--footer-body-line-height);
            overflow-wrap: break-word;
            word-wrap: break-word;
            word-break: break-word;
        }

        .office-map-button {
            margin: 0;
            margin-left: auto;
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.55rem 1.1rem;
            border-radius: 999px;
            background: var(--gradient-primary);
            color: var(--dark);
            font-weight: 600;
            font-size: var(--footer-body-font-size);
            line-height: var(--footer-body-line-height);
            text-decoration: none;
            box-shadow: var(--shadow-sm);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .office-map-button:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

        .office-map-button svg {
            width: 16px;
            height: 16px;
            stroke: var(--dark);
            stroke-width: 2;
            fill: none;
        }

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

            .stats-grid,
            .destinations-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero h1 {
                font-size: 3rem;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }

            .footer-content > div:last-child {
                max-width: none;
                justify-self: stretch;
                grid-column: 1 / -1;
            }

            .office-location-card {
                max-width: none;
                margin-left: 0;
                margin-right: 0;
                text-align: left;
            }

            .office-location-row {
                justify-content: space-between;
            }

            .office-map-button {
                width: auto;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .header.site-header {
                padding: 0.5rem 1rem;
                flex-wrap: wrap;
            }

            .header.site-header .nav-links {
                width: 100%;
                justify-content: flex-end;
                gap: 0.35rem 0.75rem;
            }

            .hero-content {
                margin-left: max(0.65rem, env(safe-area-inset-left, 0px));
                margin-right: auto;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .stats-grid,
            .destinations-grid {
                grid-template-columns: 1fr;
            }

            .stats-section .sf-digit {
                --sf-h: 2.12rem;
                --sf-w: 1.12rem;
            }

            .stat-flap-suffix {
                font-size: 1.42rem;
            }

            .stats-section .stat-label {
                font-size: 0.84rem;
                letter-spacing: 0.12em;
                padding: 0.14rem 0.65rem;
                line-height: 1.08;
            }

            .section-title {
                font-size: 2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }