        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Poppins', sans-serif; overflow-x: hidden; background: #f9f9f9; }

        :root {
            --darkest-navy: #0a2434;
            --dark-blue: #151857;
            --primary-blue: #004aad;
            --light-blue: #94b6ef;
            --off-white: #f9f9f9;
            --text-dark: #1a1a1a;
            --text-light: #ffffff;
        }

        /* ═══════ NAVBAR ═══════ */
        nav {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            background: rgba(21, 24, 87, 0.92); backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0.8rem 2rem;
        }
        .navbar-container {
            max-width: 1400px; margin: 0 auto;
            display: flex; justify-content: space-between; align-items: center;
            position: relative;
        }
        .navbar-logo { height: 42px; flex-shrink: 0; }
        .navbar-logo img { height: 42px; width: auto; }

        .nav-links {
            list-style: none;
            display: flex; align-items: center; gap: 1.4rem;
            margin: 0; padding: 0;
            overflow: hidden;
            max-width: 0; opacity: 0;
            transition: max-width 0.45s cubic-bezier(0.4,0,0.2,1),
                        opacity 0.35s ease 0.05s;
            white-space: nowrap;
        }
        .nav-links.open {
            max-width: 800px;
            opacity: 1;
        }
        .nav-links li {
            opacity: 0;
            transform: translateX(20px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .nav-links.open li {
            opacity: 1;
            transform: translateX(0);
        }
        .nav-links.open li:nth-child(1) { transition-delay: 0.06s; }
        .nav-links.open li:nth-child(2) { transition-delay: 0.1s; }
        .nav-links.open li:nth-child(3) { transition-delay: 0.14s; }
        .nav-links.open li:nth-child(4) { transition-delay: 0.18s; }
        .nav-links.open li:nth-child(5) { transition-delay: 0.22s; }
        .nav-links.open li:nth-child(6) { transition-delay: 0.26s; }
        .nav-links.open li:nth-child(7) { transition-delay: 0.30s; }
        .nav-links a {
            color: #fff; text-decoration: none;
            font-family: 'Poppins', sans-serif;
            font-size: 0.85rem; font-weight: 500;
            transition: color 0.25s;
        }
        .nav-links a:hover { color: #25d366; }

        .navbar-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
        .nav-cta {
            background: #25d366; color: white !important; padding: 0.6rem 1.4rem;
            border-radius: 50px; font-weight: 600 !important; text-decoration: none;
            font-size: 0.9rem; font-family: 'Poppins', sans-serif; transition: background 0.3s;
        }
        .nav-cta:hover { background: #1fb855; }

        .hamburger {
            display: flex; flex-direction: column; cursor: pointer; gap: 5px;
            background: none; border: none; padding: 6px;
        }
        .hamburger span {
            width: 24px; height: 2.5px; background: white; border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        .hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

        @media (max-width: 768px) {
            .navbar-container { flex-wrap: wrap; }
            .nav-links {
                max-width: 0; opacity: 0;
                flex-direction: column; gap: 0;
                order: 3;
                width: 100%;
                max-height: 0;
                transition: max-height 0.4s ease, opacity 0.3s ease, max-width 0s;
                overflow: hidden;
                white-space: normal;
            }
            .nav-links.open {
                max-width: 100%;
                max-height: 400px;
                opacity: 1;
                padding-top: 0.8rem;
            }
            .nav-links li {
                transform: translateY(10px);
            }
            .nav-links.open li {
                transform: translateY(0);
            }
            .nav-links a {
                display: block;
                font-size: 1rem;
                padding: 0.65rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.06);
            }
            .nav-cta { padding: 0.5rem 1rem; font-size: 0.82rem; }
        }

        /* ═══════ HERO ═══════ */
        .hero {
            margin-top: 60px;
            min-height: calc(100vh - 60px);
            background: linear-gradient(180deg, var(--dark-blue) 0%, var(--darkest-navy) 100%);
            display: flex; align-items: center; justify-content: center;
            position: relative; overflow: hidden;
        }
        .hero-content {
            position: relative; z-index: 10;
            text-align: center; padding: 2rem;
            max-width: 700px;
            margin-bottom: 22rem;
        }
        .hero-content h1 {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            font-weight: 800; color: white;
            line-height: 1.1; margin-bottom: 1rem;
        }
        .hero-content h1 span { color: var(--light-blue); }
        .hero-content .subtitle {
            font-size: 1.1rem; color: rgba(255,255,255,0.85);
            margin-bottom: 0.7rem; font-weight: 400;
        }
        .hero-content .tagline {
            display: block; font-size: 0.85rem;
            color: var(--light-blue); font-weight: 600;
            letter-spacing: 0.08em; text-transform: uppercase;
            margin-bottom: 1.8rem;
        }
        .hero-cta {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            color: white; padding: 1.1rem 3rem;
            border-radius: 50px; font-weight: 700;
            font-size: 1.15rem; text-decoration: none;
            white-space: nowrap;
            box-shadow: 0 8px 25px rgba(0,74,173,0.4);
            transition: all 0.3s;
        }
        .hero-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,74,173,0.5); }

        /* Avila mountain */
        .hero-avila {
            position: absolute; bottom: 100px; left: 0; right: 0;
            height: 400px; z-index: 1;
        }
        .hero-avila::before {
            content: ''; position: absolute;
            bottom: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(180deg, #0f2a1f 0%, #0d1e30 60%);
            clip-path: polygon(
                0% 100%,
                0% 62%,
                1% 58%, 2% 55%, 3% 50%, 4% 48%, 5% 52%, 6% 49%,
                7% 45%, 8% 42%, 9% 40%, 10% 43%, 11% 41%,
                12% 38%, 13% 35%, 14% 37%, 15% 34%, 16% 32%,
                17% 30%, 18% 33%, 19% 31%, 20% 28%, 21% 26%,
                22% 29%, 23% 27%, 24% 24%, 25% 22%, 26% 25%,
                27% 23%, 28% 20%, 29% 18%, 30% 21%, 31% 19%,
                32% 16%, 33% 14%, 34% 17%, 35% 15%, 36% 13%,
                37% 15%, 38% 18%, 39% 16%, 40% 19%, 41% 17%,
                42% 14%, 43% 12%, 44% 15%, 45% 13%, 46% 10%,
                47% 12%, 48% 9%, 49% 11%, 50% 8%,
                51% 10%, 52% 12%, 53% 9%, 54% 11%, 55% 14%,
                56% 12%, 57% 15%, 58% 13%, 59% 16%, 60% 18%,
                61% 15%, 62% 17%, 63% 20%, 64% 18%, 65% 21%,
                66% 19%, 67% 22%, 68% 20%, 69% 17%, 70% 15%,
                71% 18%, 72% 16%, 73% 19%, 74% 22%, 75% 20%,
                76% 23%, 77% 25%, 78% 22%, 79% 24%, 80% 27%,
                81% 30%, 82% 28%, 83% 31%, 84% 34%, 85% 32%,
                86% 35%, 87% 38%, 88% 36%, 89% 40%, 90% 43%,
                91% 41%, 92% 45%, 93% 48%, 94% 46%, 95% 50%,
                96% 53%, 97% 56%, 98% 58%, 99% 61%, 100% 65%,
                100% 100%
            );
        }

        /* City buildings */
        .hero-city {
            position: absolute; bottom: 100px; left: 0; right: 0;
            height: 300px; z-index: 2;
            display: flex; align-items: flex-end;
            justify-content: center; gap: 4px;
            padding: 0 20px;
        }
        .hero-city span {
            display: inline-block; border-radius: 2px 2px 0 0;
            position: relative;
        }
        .hero-city span::after {
            content: ''; position: absolute;
            top: 8px; left: 3px; right: 3px; bottom: 8px;
            background: repeating-linear-gradient(
                180deg,
                rgba(148,182,239,0.15) 0px,
                rgba(148,182,239,0.15) 3px,
                transparent 3px,
                transparent 8px
            );
            border-radius: 1px;
        }
        .hero-city span:nth-child(1)  { width:22px; height:90px;  background:rgba(12,22,38,0.9); }
        .hero-city span:nth-child(2)  { width:18px; height:130px; background:rgba(14,25,42,0.85); }
        .hero-city span:nth-child(3)  { width:28px; height:70px;  background:rgba(16,28,45,0.9); }
        .hero-city span:nth-child(4)  { width:16px; height:110px; background:rgba(10,20,35,0.88); }
        .hero-city span:nth-child(5)  { width:24px; height:155px; background:rgba(13,24,40,0.92); }
        .hero-city span:nth-child(6)  { width:20px; height:85px;  background:rgba(15,27,43,0.87); }
        .hero-city span:nth-child(7)  { width:30px; height:140px; background:rgba(11,21,36,0.9); }
        .hero-city span:nth-child(8)  { width:14px; height:65px;  background:rgba(14,25,42,0.85); }
        .hero-city span:nth-child(9)  { width:26px; height:120px; background:rgba(12,23,39,0.92); }
        .hero-city span:nth-child(10) { width:18px; height:95px;  background:rgba(16,28,45,0.88); }
        .hero-city span:nth-child(11) { width:22px; height:160px; background:rgba(10,20,35,0.9); }
        .hero-city span:nth-child(12) { width:20px; height:75px;  background:rgba(13,24,40,0.87); }
        .hero-city span:nth-child(13) { width:28px; height:135px; background:rgba(11,21,36,0.92); }
        .hero-city span:nth-child(14) { width:16px; height:100px; background:rgba(15,27,43,0.85); }
        .hero-city span:nth-child(15) { width:24px; height:80px;  background:rgba(14,25,42,0.9); }
        .hero-city span:nth-child(16) { width:20px; height:145px; background:rgba(12,22,38,0.88); }
        .hero-city span:nth-child(17) { width:26px; height:60px;  background:rgba(16,28,45,0.92); }
        .hero-city span:nth-child(18) { width:18px; height:115px; background:rgba(10,20,35,0.87); }
        .hero-city span:nth-child(19) { width:22px; height:90px;  background:rgba(13,24,40,0.9); }
        .hero-city span:nth-child(20) { width:30px; height:150px; background:rgba(11,21,36,0.85); }
        .hero-city span:nth-child(21) { width:16px; height:70px;  background:rgba(14,25,42,0.92); }
        .hero-city span:nth-child(22) { width:24px; height:125px; background:rgba(12,23,39,0.88); }
        .hero-city span:nth-child(23) { width:20px; height:85px;  background:rgba(15,27,43,0.9); }
        .hero-city span:nth-child(24) { width:28px; height:105px; background:rgba(10,20,35,0.87); }
        .hero-city span:nth-child(25) { width:18px; height:140px; background:rgba(16,28,45,0.92); }
        .hero-city span:nth-child(26) { width:22px; height:65px;  background:rgba(13,24,40,0.85); }
        .hero-city span:nth-child(27) { width:26px; height:110px; background:rgba(11,21,36,0.9); }
        .hero-city span:nth-child(28) { width:14px; height:80px;  background:rgba(14,25,42,0.88); }
        .hero-city span:nth-child(29) { width:24px; height:130px; background:rgba(12,22,38,0.92); }
        .hero-city span:nth-child(30) { width:20px; height:95px;  background:rgba(15,27,43,0.87); }
        .hero-city span:nth-child(31) { width:24px; height:115px; background:rgba(12,22,38,0.9); }
        .hero-city span:nth-child(32) { width:18px; height:75px;  background:rgba(14,25,42,0.88); }
        .hero-city span:nth-child(33) { width:26px; height:145px; background:rgba(10,20,35,0.92); }
        .hero-city span:nth-child(34) { width:20px; height:85px;  background:rgba(16,28,45,0.87); }
        .hero-city span:nth-child(35) { width:14px; height:120px; background:rgba(13,24,40,0.9); }
        .hero-city span:nth-child(36) { width:28px; height:65px;  background:rgba(11,21,36,0.85); }
        .hero-city span:nth-child(37) { width:16px; height:135px; background:rgba(14,25,42,0.92); }
        .hero-city span:nth-child(38) { width:22px; height:100px; background:rgba(12,23,39,0.88); }
        .hero-city span:nth-child(39) { width:20px; height:150px; background:rgba(15,27,43,0.9); }
        .hero-city span:nth-child(40) { width:26px; height:70px;  background:rgba(10,20,35,0.87); }
        .hero-city span:nth-child(41) { width:18px; height:125px; background:rgba(16,28,45,0.92); }
        .hero-city span:nth-child(42) { width:24px; height:90px;  background:rgba(13,24,40,0.85); }
        .hero-city span:nth-child(43) { width:22px; height:140px; background:rgba(11,21,36,0.9); }
        .hero-city span:nth-child(44) { width:16px; height:80px;  background:rgba(14,25,42,0.88); }
        .hero-city span:nth-child(45) { width:28px; height:110px; background:rgba(12,22,38,0.92); }
        .hero-city span:nth-child(46) { width:20px; height:60px;  background:rgba(15,27,43,0.87); }
        .hero-city span:nth-child(47) { width:14px; height:130px; background:rgba(10,20,35,0.9); }
        .hero-city span:nth-child(48) { width:26px; height:95px;  background:rgba(16,28,45,0.85); }
        .hero-city span:nth-child(49) { width:22px; height:155px; background:rgba(13,24,40,0.92); }
        .hero-city span:nth-child(50) { width:18px; height:75px;  background:rgba(11,21,36,0.88); }

        /* Road */
        .hero-road {
            position: absolute; bottom: 0; left: 0; right: 0;
            height: 100px; z-index: 3;
            background: #1a1a2e;
        }
        .hero-road::before {
            content: ''; position: absolute;
            top: 50%; left: 0; right: 0;
            height: 5px; transform: translateY(-50%);
            background: repeating-linear-gradient(90deg, #f0c040 0px, #f0c040 30px, transparent 30px, transparent 60px);
        }

        /* Trimoto Washu — cabina + carga pegada + tanque */
        .hero-moto {
            position: absolute; bottom: 10px; z-index: 5;
            width: 130px; height: 62px;
            animation: motoDrive 10s linear infinite;
            filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
            transform: scale(3.2);
            transform-origin: bottom center;
        }
        @keyframes motoDrive {
            0%   { left: -200px; }
            100% { left: calc(100% + 200px); }
        }

        /* ── MOTORCYCLE FRONT (right side) ── */
        /* Moto body/frame — low, connects to cargo */
        .moto-cabin {
            position: absolute; bottom: 12px; right: 34px;
            width: 36px; height: 10px;
            background: #1a56b0;
            border-radius: 2px;
        }
        /* Roof / canopy over rider */
        .moto-roof {
            position: absolute; bottom: 46px; right: 36px;
            width: 34px; height: 3px;
            background: #0e3d8a;
            border-radius: 3px;
        }
        /* Roof support pillars */
        .moto-pillar-a {
            position: absolute; bottom: 22px; right: 36px;
            width: 2px; height: 26px;
            background: #1550a8;
            border-radius: 1px;
            transform: rotate(-6deg);
            transform-origin: bottom center;
        }
        .moto-pillar-b {
            position: absolute; bottom: 22px; right: 66px;
            width: 2px; height: 26px;
            background: #1550a8;
            border-radius: 1px;
        }
        /* Small windscreen/fairing */
        .moto-windshield {
            position: absolute; bottom: 22px; right: 36px;
            width: 8px; height: 18px;
            background: linear-gradient(160deg, rgba(170,215,255,0.7) 0%, rgba(110,175,235,0.5) 100%);
            border: 1px solid rgba(90,150,215,0.4);
            border-radius: 1px 3px 0 0;
            border-bottom: none;
            transform: skewX(10deg);
        }
        /* Side window — not used, open moto */
        .moto-side-window {
            display: none;
        }
        /* Handlebar */
        .moto-grille {
            position: absolute; bottom: 24px; right: 32px;
            width: 12px; height: 3px;
            background: #666;
            border-radius: 2px;
        }
        .moto-grille::after {
            display: none;
        }
        /* Headlight */
        .moto-light {
            position: absolute; bottom: 16px; right: 33px;
            width: 5px; height: 5px;
            background: #f0c040;
            border-radius: 50%;
            box-shadow: 0 0 6px 2px rgba(240,192,64,0.5);
        }
        /* Front fork */
        .moto-fork {
            position: absolute; bottom: 6px; right: 38px;
            width: 3px; height: 14px;
            background: #555;
            border-radius: 1px;
            transform: rotate(-8deg);
            transform-origin: bottom center;
        }
        /* Front fender */
        .moto-fender-f {
            position: absolute; bottom: 12px; right: 34px;
            width: 14px; height: 3px;
            background: #1a56b0;
            border-radius: 2px;
        }
        /* Seat */
        .moto-seat {
            position: absolute; bottom: 18px; right: 46px;
            width: 18px; height: 5px;
            background: #222;
            border-radius: 3px 2px 0 0;
        }

        /* ── DRIVER (on motorcycle) ── */
        .moto-driver {
            position: absolute; bottom: 23px; right: 50px;
            width: 9px; height: 14px;
            background: #0e2352;
            border-radius: 2px 2px 0 0;
        }
        /* Helmet */
        .moto-driver::before {
            content: ''; position: absolute;
            top: -10px; left: -1px;
            width: 11px; height: 10px;
            background: #1550a8;
            border-radius: 50% 50% 3px 3px;
        }
        /* Visor */
        .moto-driver::after {
            content: ''; position: absolute;
            top: -7px; left: 6px;
            width: 5px; height: 5px;
            background: rgba(160,210,255,0.7);
            border-radius: 0 3px 3px 0;
        }
        /* Arm on handlebar */
        .moto-arm {
            position: absolute; bottom: 30px; right: 42px;
            width: 12px; height: 3px;
            background: #0e2352;
            border-radius: 1px;
            transform: rotate(-12deg);
        }

        /* ── CARGO (left/back, pegado a cabina) ── */
        /* Cargo box — navy, directly attached */
        .moto-cargo {
            position: absolute; bottom: 12px; left: 4px;
            width: 52px; height: 22px;
            background: #0d2d6b;
            border-radius: 2px 0 0 2px;
        }
        /* Side panel detail */
        .moto-cargo::before {
            content: ''; position: absolute;
            top: 3px; left: 3px; right: 3px; bottom: 3px;
            border: 1px solid rgba(148,182,239,0.2);
            border-radius: 1px;
        }
        /* Washu stripe */
        .moto-cargo::after {
            content: ''; position: absolute;
            top: 50%; left: 6px; right: 6px; height: 3px;
            transform: translateY(-50%);
            background: var(--light-blue);
            border-radius: 1px;
            opacity: 0.6;
        }
        /* Water tank — large cylinder on top */
        .moto-tank {
            position: absolute; bottom: 34px; left: 8px;
            width: 44px; height: 14px;
            background: linear-gradient(180deg, #5a9ee8 0%, #3a7fd4 30%, #2b6cc4 70%, #3578d8 100%);
            border-radius: 8px;
            border: 1px solid #1a5ab8;
        }
        .moto-tank::after {
            content: ''; position: absolute;
            top: 2px; left: 6px; right: 6px; height: 3px;
            background: rgba(255,255,255,0.3);
            border-radius: 3px;
        }
        /* Tank cap */
        .moto-tank-cap {
            position: absolute; bottom: 46px; left: 26px;
            width: 6px; height: 4px;
            background: #1a5ab8;
            border-radius: 2px 2px 0 0;
        }
        /* Tail lights */
        .moto-tail-top {
            position: absolute; bottom: 26px; left: 3px;
            width: 3px; height: 4px;
            background: #f59e0b;
            border-radius: 1px;
            box-shadow: 0 0 3px 1px rgba(245,158,11,0.4);
        }
        .moto-tail-bot {
            position: absolute; bottom: 14px; left: 3px;
            width: 3px; height: 4px;
            background: #ef4444;
            border-radius: 1px;
            box-shadow: 0 0 3px 1px rgba(239,68,68,0.4);
        }
        /* Rear bumper */
        .moto-bumper {
            position: absolute; bottom: 10px; left: 2px;
            width: 4px; height: 24px;
            background: #0a2040;
            border-radius: 2px 0 0 2px;
        }

        /* ── WHEELS ── */
        /* Front wheel — single, smaller */
        .moto-wheel-f {
            position: absolute; bottom: 0; right: 38px;
            width: 13px; height: 13px;
            border-radius: 50%;
            background: #1a1a2e;
            border: 2px solid #444;
        }
        .moto-wheel-f::after {
            content: ''; position: absolute;
            top: 50%; left: 50%; width: 4px; height: 4px;
            background: #888; border-radius: 50%;
            transform: translate(-50%,-50%);
        }
        .moto-wheel-f::before {
            content: ''; position: absolute;
            top: 1px; left: 1px; right: 1px; bottom: 1px;
            border-radius: 50%;
            background: repeating-conic-gradient(#555 0deg 30deg, transparent 30deg 60deg);
            animation: wheelSpin 0.4s linear infinite;
        }
        /* Rear wheel visible */
        .moto-wheel-r {
            position: absolute; bottom: 0; left: 16px;
            width: 16px; height: 16px;
            border-radius: 50%;
            background: #1a1a2e;
            border: 2px solid #444;
        }
        .moto-wheel-r::after {
            content: ''; position: absolute;
            top: 50%; left: 50%; width: 5px; height: 5px;
            background: #888; border-radius: 50%;
            transform: translate(-50%,-50%);
        }
        .moto-wheel-r::before {
            content: ''; position: absolute;
            top: 1px; left: 1px; right: 1px; bottom: 1px;
            border-radius: 50%;
            background: repeating-conic-gradient(#555 0deg 30deg, transparent 30deg 60deg);
            animation: wheelSpin 0.4s linear infinite;
        }
        /* Second rear wheel peeking behind */
        .moto-wheel-r2 {
            position: absolute; bottom: 0; left: 12px;
            width: 16px; height: 16px;
            border-radius: 50%;
            background: #111;
            border: 2px solid #333;
            z-index: -1;
        }
        @keyframes wheelSpin {
            to { transform: rotate(360deg); }
        }

        @media (max-width: 900px) {
            .hero-content h1 { font-size: 2rem; }
            .hero-content .subtitle { font-size: 1rem; }
            .hero-city { height: 220px; }
            .hero-avila { height: 280px; }
            .hero-moto { transform: scale(2.2); }
        }
        @media (max-width: 600px) {
            .hero { min-height: calc(100vh - 60px); align-items: center; }
            .hero-content { margin-bottom: 15rem; padding: 1rem 1.5rem 0; }
            .hero-content h1 { font-size: 1.8rem; }
            .hero-content .subtitle { font-size: 0.9rem; }
            .hero-avila { height: 280px; bottom: 70px; }
            .hero-city { height: 90px; gap: 2px; bottom: 70px; }
            .hero-road { height: 70px; }
            .hero-moto { transform: scale(2.2); bottom: 8px; animation: motoDriveMobile 7s linear infinite; }
            @keyframes motoDriveMobile {
                0%   { left: -320px; }
                100% { left: calc(100% + 320px); }
            }
            .floating-wa { bottom: 20px; width: 46px; height: 46px; }
            .floating-wa svg { width: 20px; height: 20px; }
            .section-title { font-size: 1.4rem !important; }
            .section-subtitle { font-size: 0.8rem !important; margin-bottom: 1.5rem; }
            .water-stat { font-size: 1.5rem !important; }
            .comparison-item .liters { font-size: 1.2rem !important; }
            .comparison-item h4 { font-size: 0.8rem !important; }
            .eco-feature { font-size: 0.8rem !important; }
            .section-white, .section-dark { padding: 3rem 1.2rem; }
        }
        @media (max-width: 400px) {
            .hero-content { padding: 0.8rem 1.2rem 0; margin-bottom: 12rem; }
            .hero-content h1 { font-size: 1.5rem; }
            .hero-avila { height: 240px; bottom: 60px; }
            .hero-city { height: 70px; bottom: 60px; }
            .hero-road { height: 60px; }
            .hero-moto { transform: scale(1.8); bottom: 6px; }
        }

        /* ═══════ SECTION BASES ═══════ */
        .section-white { background: var(--off-white); color: var(--text-dark); padding: 5rem 2rem; }
        .section-dark { background: linear-gradient(160deg, var(--dark-blue), var(--darkest-navy)); color: white; padding: 5rem 2rem; position: relative; overflow: hidden; }
        .section-dark::before { content:''; position:absolute; top:-200px; right:-200px; width:500px; height:500px; background:radial-gradient(circle,rgba(148,182,239,0.06),transparent 70%); pointer-events:none; }
        .section-container { max-width: 1200px; margin: 0 auto; }
        .section-title { font-size: 2.2rem; font-weight: 800; margin-bottom: 0.5rem; text-align: center; }
        .section-subtitle { font-size: 1.05rem; margin-bottom: 3rem; text-align: center; font-weight: 400; opacity: 0.75; }

        /* ═══════ SERVICES (WHITE) ═══════ */
        .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
        .service-card { background: white; padding: 2rem 1.5rem; border-radius: 16px; text-align: center; transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
        .service-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,74,173,0.12); }
        .service-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
        .service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--darkest-navy); margin-bottom: 0.7rem; }
        .service-card p { color: #666; font-size: 0.9rem; line-height: 1.6; }
        .services-note { background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue)); color: white; padding: 1.2rem; border-radius: 12px; font-weight: 500; font-size: 0.95rem; text-align: center; }
        .pricing-note { margin-top: 2rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(148,182,239,0.25); color: rgba(255,255,255,0.9); padding: 1.1rem 1.4rem; border-radius: 12px; font-weight: 500; font-size: 0.9rem; line-height: 1.55; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; backdrop-filter: blur(6px); }
        @media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } .section-title { font-size: 1.8rem; } }

        /* ═══════ HOW IT WORKS (DARK) ═══════ */
        .steps-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; z-index: 1; position: relative; }
        .step { text-align: center; }
        .step-number { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary-blue), var(--light-blue)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; margin: 0 auto 0.8rem; box-shadow: 0 8px 25px rgba(0,74,173,0.3); }
        .step h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.4rem; }
        .step p { font-size: 0.8rem; opacity: 0.85; line-height: 1.4; }
        @media (max-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
        @media (max-width: 480px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }

        /* ═══════ ECO (WHITE) ═══════ */
        .eco-content { max-width: 800px; margin: 0 auto; }
        .water-stat { font-size: 3rem; font-weight: 800; color: var(--primary-blue); margin-bottom: 0.5rem; text-align: center; }
        .water-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
        .comparison-item { background: white; padding: 1.5rem; border-radius: 16px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
        .comparison-item h4 { font-size: 0.95rem; font-weight: 600; color: var(--darkest-navy); }
        .comparison-item .liters { font-size: 2.2rem; font-weight: 800; color: var(--primary-blue); margin: 0.8rem 0; }
        .eco-feature { font-size: 1rem; color: var(--text-dark); margin: 0.8rem 0; font-weight: 500; text-align: center; }

        /* ═══════ PRICING (DARK) ═══════ */
        .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
        .pricing-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; transition: all 0.3s; position: relative; backdrop-filter: blur(10px); }
        .pricing-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.1); }
        .pricing-card.featured { border-color: var(--light-blue); transform: scale(1.04); background: rgba(0,74,173,0.15); }
        .popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--primary-blue), var(--light-blue)); color: white; padding: 0.4rem 1.2rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
        .vehicle-type { font-size: 1.3rem; font-weight: 700; }
        .vehicle-icon { font-size: 2.5rem; margin: 0.8rem 0; }
        .price { font-size: 2.8rem; font-weight: 800; color: var(--light-blue); margin: 1rem 0; }
        .price-subtitle { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 1.2rem; }
        .price-features { text-align: left; background: rgba(255,255,255,0.05); padding: 1.2rem; border-radius: 10px; margin-bottom: 1.2rem; }
        .price-features li { list-style: none; padding: 0.4rem 0; font-size: 0.9rem; opacity: 0.9; }
        .price-features li:before { content: "\2713 "; color: var(--light-blue); font-weight: 700; margin-right: 0.4rem; }
        .price-cta { background: #25d366; color: white; border: none; padding: 0.9rem 1.5rem; border-radius: 50px; font-size: 0.9rem; font-weight: 700; cursor: pointer; width: 100%; font-family: 'Poppins', sans-serif; transition: all 0.3s; }
        .price-cta:hover { background: #1da851; }
        @media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } .pricing-card.featured { transform: scale(1); } }

        /* ═══════ SECTION SOCIAL — Testimonios + FAQ (Light) ═══════ */
        .section-social {
            position: relative;
            background: var(--off-white);
            color: var(--text-dark);
            padding: 7rem 2rem 7.5rem;
            overflow: hidden;
        }
        .social-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        .social-header {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0; transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .section-social.is-visible .social-header {
            opacity: 1; transform: translateY(0);
        }
        .social-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 0.8rem;
            color: var(--darkest-navy);
        }
        .social-subtitle {
            font-size: 1.05rem;
            color: #6b7280;
            max-width: 520px;
            margin: 0 auto;
        }

        .social-grid {
            display: grid;
            grid-template-columns: 58% 42%;
            gap: 3rem;
            align-items: start;
        }

        /* ── Testimonios columna izquierda ── */
        .social-col-left {
            opacity: 0; transform: translateY(30px);
            transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
        }
        .section-social.is-visible .social-col-left {
            opacity: 1; transform: translateY(0);
        }
        .testi-track-wrapper {
            position: relative;
            height: 520px;
            overflow: hidden;
            mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
        }
        .testi-track {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            will-change: transform;
        }
        .testi-card {
            position: relative;
            background: #fff;
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: 14px;
            padding: 2rem 2rem 1.6rem;
            flex-shrink: 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .testi-card:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            border-color: rgba(0,74,173,0.12);
        }
        .testi-quote {
            position: absolute;
            top: 10px; left: 18px;
            font-family: Georgia, serif;
            font-size: 4.5rem;
            line-height: 1;
            color: var(--primary-blue);
            opacity: 0.08;
            pointer-events: none;
        }
        .testi-stars {
            color: #f59e0b;
            font-size: 1rem;
            letter-spacing: 2px;
            margin-bottom: 0.75rem;
        }
        .testi-text {
            font-size: 1rem;
            line-height: 1.7;
            font-style: italic;
            color: #444;
            margin-bottom: 1.1rem;
        }
        .testi-photo {
            width: 100%;
            height: 170px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            margin-bottom: 1rem;
        }
        .testi-author {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
        }
        .testi-author strong {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--darkest-navy);
        }
        .testi-author span {
            font-size: 0.8rem;
            color: #9ca3af;
        }

        /* ── FAQ columna derecha ── */
        .social-col-right {
            opacity: 0; transform: translateY(30px);
            transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
        }
        .section-social.is-visible .social-col-right {
            opacity: 1; transform: translateY(0);
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }
        .faq-item {
            background: #f5f7fa;
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: 12px;
            overflow: hidden;
            transition: border-color 0.3s, background 0.3s;
        }
        .faq-item:hover {
            border-color: rgba(0,74,173,0.15);
            background: #eef1f6;
        }
        .faq-item.active {
            border-color: rgba(0,74,173,0.2);
            background: #eef1f6;
        }
        .faq-trigger {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.1rem 1.3rem;
            background: none;
            border: none;
            color: var(--darkest-navy);
            font-family: 'Poppins', sans-serif;
            font-size: 0.92rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            transition: color 0.3s;
        }
        .faq-trigger:hover { color: var(--primary-blue); }
        .faq-icon {
            flex-shrink: 0;
            width: 26px; height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 300;
            color: var(--primary-blue);
            border: 1px solid rgba(0,74,173,0.2);
            border-radius: 50%;
            transition: transform 0.35s ease, background 0.3s;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            background: rgba(0,74,173,0.08);
        }
        .faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0 1.3rem;
        }
        .faq-item.active .faq-body {
            max-height: 200px;
            padding: 0 1.3rem 1.2rem;
        }
        .faq-body p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: #6b7280;
        }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            .section-social { padding: 5rem 1.2rem 5.5rem; }
            .social-header { margin-bottom: 2.5rem; }
            .social-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .testi-track-wrapper {
                height: auto;
                overflow: visible;
                mask-image: none;
                -webkit-mask-image: none;
            }
            .testi-track {
                animation: none !important;
            }
            .testi-card { padding: 1.6rem; }
            .testi-photo { height: 140px; }
        }

        /* ═══════ BOOKING (DARK) ═══════ */
        .booking-container { max-width: 560px; margin: 0 auto; }
        .form-group { margin-bottom: 1.2rem; }
        .form-group label { display: block; margin-bottom: 0.4rem; font-weight: 600; font-size: 0.9rem; }
        .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.9rem 1rem; border: 1.5px solid rgba(255,255,255,0.15); border-radius: 10px; background: rgba(255,255,255,0.05); color: white; font-family: 'Poppins', sans-serif; font-size: 0.9rem; transition: all 0.3s; }
        .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--light-blue); background: rgba(255,255,255,0.08); }
        .form-group select { cursor: pointer; appearance: none; }
        .form-group select option { background: var(--dark-blue); color: white; }
        .submit-btn { background: var(--primary-blue); color: white; padding: 1rem 2rem; border: none; border-radius: 50px; font-size: 1rem; font-weight: 700; cursor: pointer; width: 100%; font-family: 'Poppins', sans-serif; transition: all 0.3s; }
        .submit-btn:hover { background: #003a87; }
        .submit-btn:disabled { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); cursor: not-allowed; }
        .form-group select:disabled { opacity: 0.55; cursor: not-allowed; }
        .disponibilidad-msg { display: none; background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.5); color: #fca5a5; padding: 0.9rem 1rem; border-radius: 10px; font-size: 0.88rem; line-height: 1.45; text-align: center; margin-bottom: 1.2rem; }
        .disponibilidad-msg.active { display: block; }
        .form-label-row { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.4rem; }
        .form-label-row label { margin-bottom: 0; }
        .info-btn { background: rgba(255,255,255,0.08); border: 1px solid rgba(148,182,239,0.35); color: rgba(255,255,255,0.9); width: 22px; height: 22px; border-radius: 50%; cursor: pointer; font-size: 0.78rem; line-height: 1; display: inline-flex; align-items: center; justify-content: center; padding: 0; transition: all 0.2s; font-family: inherit; }
        .info-btn:hover { background: rgba(148,182,239,0.22); border-color: var(--light-blue); color: white; transform: scale(1.08); }
        .legal-modal-sm { max-width: 420px !important; padding: 2rem 1.8rem !important; }
        .legal-modal-sm h2 { font-size: 1.2rem; margin-bottom: 1.2rem; }
        .tiempos-list { list-style: none; margin: 0 0 1rem 0; padding: 0; }
        .tiempos-list li { display: flex; align-items: center; gap: 0.9rem; padding: 0.75rem 0.2rem; border-bottom: 1px solid #eef1f5; font-size: 0.95rem; }
        .tiempos-list li:last-child { border-bottom: none; }
        .tiempos-icon { font-size: 1.4rem; width: 32px; text-align: center; flex-shrink: 0; }
        .tiempos-label { flex: 1; color: #1a1a1a; font-weight: 500; }
        .tiempos-value { color: var(--primary-blue); font-weight: 700; font-size: 0.9rem; white-space: nowrap; }
        .tiempos-note { font-size: 0.82rem !important; color: #777 !important; text-align: center; font-style: italic; margin-top: 0.8rem !important; margin-bottom: 0 !important; }
        .pago-info { font-size: 0.95rem !important; line-height: 1.65 !important; color: #333 !important; text-align: center; background: rgba(0,74,173,0.06); border: 1px solid rgba(0,74,173,0.15); border-radius: 10px; padding: 1rem 1.1rem; margin: 0 !important; }

        /* Booking success message */
        .booking-success {
            display: none;
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(148,182,239,0.25);
            border-radius: 16px;
            margin-top: 1rem;
            animation: successFadeIn 0.5s ease-out;
        }
        .booking-success.active { display: block; }
        .booking-success .success-icon {
            width: 72px; height: 72px;
            margin: 0 auto 1.2rem;
            background: rgba(34,197,94,0.15);
            border: 2px solid #22c55e;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
        }
        .booking-success .success-icon svg {
            width: 36px; height: 36px;
            color: #22c55e;
        }
        .booking-success h4 {
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .booking-success p {
            color: rgba(255,255,255,0.8);
            font-size: 0.95rem;
            line-height: 1.5;
        }
        @keyframes successFadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes successPop {
            0% { transform: scale(0); }
            60% { transform: scale(1.15); }
            100% { transform: scale(1); }
        }

        /* ═══════ FOOTER ═══════ */
        footer { background: var(--darkest-navy); color: white; padding: 2.5rem 2rem; text-align: center; }
        .footer-logo { height: 40px; margin-bottom: 1.5rem; display: flex; justify-content: center; }
        .footer-logo img { height: 100%; width: auto; }
        .footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
        .footer-links a { color: var(--light-blue); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
        .footer-links a:hover { color: white; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; font-size: 0.8rem; opacity: 0.7; }

        /* ═══════ FLOATING WA ═══════ */
        .floating-wa { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: white; box-shadow: 0 6px 20px rgba(37,211,102,0.4); animation: waBounce 2.5s infinite; z-index: 999; }
        .floating-wa:hover { background: #1da851; transform: scale(1.1); animation: none; }
        @keyframes waBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

        .scroll-fade { opacity: 0; transform: translateY(20px); transition: all 0.7s ease-out; }
        .scroll-fade.visible { opacity: 1; transform: translateY(0); }

        /* ═══════ COOKIE BANNER ═══════ */
        .cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(10,36,52,0.97); backdrop-filter: blur(10px); padding: 1.2rem 2rem; z-index: 10000; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; border-top: 2px solid var(--primary-blue); }
        .cookie-banner.hidden { display: none; }
        .cookie-text { color: rgba(255,255,255,0.9); font-size: 0.85rem; max-width: 700px; line-height: 1.6; }
        .cookie-text a { color: var(--light-blue); text-decoration: underline; cursor: pointer; }
        .cookie-btns { display: flex; gap: 0.8rem; flex-shrink: 0; }
        .cookie-btn-accept { background: #25d366; color: white; border: none; padding: 0.7rem 1.8rem; border-radius: 50px; font-weight: 600; cursor: pointer; font-family: 'Poppins', sans-serif; font-size: 0.85rem; transition: all 0.3s; }
        .cookie-btn-accept:hover { background: #1da851; }
        .cookie-btn-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); padding: 0.7rem 1.4rem; border-radius: 50px; font-weight: 500; cursor: pointer; font-family: 'Poppins', sans-serif; font-size: 0.85rem; transition: all 0.3s; }
        .cookie-btn-reject:hover { border-color: white; color: white; }

        /* Cookie + scroll mobile overrides (MUST be after base styles) */
        @media (max-width: 600px) {
            .cookie-banner { position: fixed; top: 60px; bottom: auto !important; left: 0; right: 0; flex-direction: column; text-align: center; padding: 0.8rem 1rem; gap: 0.4rem; border-top: none; border-bottom: 2px solid var(--primary-blue); }
            .cookie-text { font-size: 0.72rem; line-height: 1.3; max-width: 100%; }
            .cookie-btns { justify-content: center; gap: 0.5rem; }
            .cookie-btn-accept { padding: 0.45rem 1.3rem; font-size: 0.78rem; }
            .cookie-btn-reject { padding: 0.45rem 0.9rem; font-size: 0.78rem; }
            .scroll-fade { opacity: 1 !important; transform: translateY(0) !important; }
        }

        /* ═══════ LEGAL MODALS ═══════ */
        .legal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); z-index: 20000; display: none; align-items: center; justify-content: center; padding: 2rem; }
        .legal-overlay.active { display: flex; }
        .legal-modal { background: white; border-radius: 16px; max-width: 800px; width: 100%; max-height: 80vh; overflow-y: auto; padding: 2.5rem; position: relative; color: #1a1a1a; }
        .legal-modal h2 { font-size: 1.5rem; color: var(--dark-blue); margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 2px solid var(--primary-blue); }
        .legal-modal h3 { font-size: 1.1rem; color: var(--primary-blue); margin: 1.5rem 0 0.5rem; }
        .legal-modal p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.8rem; color: #333; }
        .legal-modal ul { margin: 0.5rem 0 1rem 1.5rem; }
        .legal-modal li { font-size: 0.9rem; line-height: 1.7; color: #333; margin-bottom: 0.3rem; }
        .legal-close { position: absolute; top: 1rem; right: 1.5rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #666; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
        .legal-close:hover { background: #f0f0f0; color: #333; }
        .footer-legal { display: flex; justify-content: center; gap: 1.5rem; margin-top: 0.8rem; flex-wrap: wrap; }
        .footer-legal a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.75rem; cursor: pointer; transition: color 0.3s; }
        .footer-legal a:hover { color: var(--light-blue); }

        /* ═══════ NOSOTROS PAGE ═══════ */
        .about-hero {
            margin-top: 60px;
            background: linear-gradient(180deg, var(--dark-blue) 0%, var(--darkest-navy) 100%);
            display: flex; align-items: center; justify-content: center;
            padding: 5rem 2rem 4rem;
            position: relative; overflow: hidden;
        }
        .about-hero::before {
            content: ''; position: absolute;
            top: -200px; right: -200px;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(148,182,239,0.08), transparent 70%);
            pointer-events: none;
        }
        .about-hero::after {
            content: ''; position: absolute;
            bottom: -200px; left: -200px;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(0,74,173,0.12), transparent 70%);
            pointer-events: none;
        }
        .about-hero-content {
            position: relative; z-index: 2;
            text-align: center;
            max-width: 800px;
        }
        .about-hero-content h1 {
            font-size: clamp(2.2rem, 5vw, 3.4rem);
            font-weight: 800;
            color: white;
            line-height: 1.1;
            margin-bottom: 1rem;
        }
        .about-hero-content h1 span { color: var(--light-blue); }
        .about-hero-sub {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.85);
            font-weight: 400;
            margin-bottom: 1.5rem;
        }
        .about-hero-story {
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.75);
            max-width: 680px;
            margin: 0 auto 2.5rem;
        }
        .about-hero-image {
            max-width: 720px;
            margin: 0 auto;
        }
        .about-hero-image img {
            width: 100%;
            height: auto;
            border-radius: 22px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.45), 0 10px 25px rgba(148,182,239,0.12);
            border: 1px solid rgba(148,182,239,0.15);
            display: block;
        }

        .about-section { padding: 5.5rem 2rem; }
        .about-container { max-width: 1100px; margin: 0 auto; }

        .about-story {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #444;
            text-align: center;
            max-width: 820px;
            margin: 2rem auto 0;
        }

        /* Historia con imagen (2 columnas) */
        .history-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .history-text { text-align: left; }
        .history-title {
            text-align: left !important;
            margin-bottom: 1.5rem;
        }
        .history-paragraph {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 1rem;
        }
        .history-image {
            position: relative;
        }
        .history-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,74,173,0.18), 0 8px 20px rgba(0,0,0,0.08);
            display: block;
            transition: transform 0.5s ease;
        }
        .history-image:hover img {
            transform: translateY(-5px);
        }

        /* ═══════ TRIMOTO STORY — cinematic scroll ═══════ */
        #trimoto-story {
            background: linear-gradient(180deg, #0D1B5E 0%, #1B4FD8 100%);
            position: relative;
            overflow: hidden;
            padding: 1.5rem 0;
        }
        .trimoto-story-block {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem 2rem;
        }
        .trimoto-block-inner {
            max-width: 1150px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .trimoto-text h3 {
            font-size: clamp(1.9rem, 4vw, 3rem);
            font-weight: 800;
            color: white;
            line-height: 1.15;
            margin-bottom: 1rem;
        }
        .trimoto-text p {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.82);
            line-height: 1.6;
        }
        .trimoto-svg-wrap {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }
        .trimoto-svg {
            height: 420px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            display: block;
            filter: drop-shadow(0 30px 80px rgba(27,79,216,0.5))
                    brightness(1.05) saturate(1.1);
        }
        /* Side scenes (1 and 2): clip the floor shadow */
        .trimoto-svg-wrap .trimoto-svg {
            height: 480px;
            width: auto;
            max-width: 100%;
            clip-path: inset(0 0 5% 0);
        }
        /* Front scene gets an extra radiant glow */
        .trimoto-svg-front {
            filter: drop-shadow(0 30px 80px rgba(27,79,216,0.5))
                    drop-shadow(0 0 60px rgba(27,79,216,0.8))
                    brightness(1.05) saturate(1.1);
        }

        /* Cinematic reveal animation */
        .trimoto-anim {
            opacity: 0;
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 1s cubic-bezier(0.16, 1, 0.3, 1),
                        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: transform, opacity;
        }
        .trimoto-anim.from-right { transform: translateX(220px); }
        .trimoto-anim.from-left { transform: translateX(-220px); }
        .trimoto-anim.from-zoom { transform: scale(0.7); }
        .trimoto-anim.visible {
            opacity: 1;
            transform: translateX(0) scale(1);
        }

        /* Block 3 — centered zoom + shine sweep */
        .block-center {
            flex-direction: column;
            gap: 2.5rem;
            align-items: center;
            justify-content: center;
        }
        .trimoto-final-wrap {
            position: relative;
            max-width: 640px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .trimoto-final-shine {
            position: relative;
            overflow: hidden;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        .trimoto-final-shine::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 60%; height: 100%;
            background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);
            transform: skewX(-18deg);
            pointer-events: none;
            z-index: 2;
        }
        .trimoto-final-wrap.visible {
            filter: drop-shadow(0 0 45px rgba(148,182,239,0.7));
        }
        .trimoto-final-wrap.visible .trimoto-final-shine::after {
            animation: trimotoShine 1.8s ease-out 0.5s;
        }
        @keyframes trimotoShine {
            0%   { left: -100%; }
            100% { left: 160%; }
        }
        .trimoto-final-title {
            font-size: clamp(2.2rem, 5.5vw, 3.8rem);
            font-weight: 800;
            color: white;
            text-align: center;
            line-height: 1.15;
        }
        .trimoto-final-title span {
            display: block;
            background: linear-gradient(135deg, #ffffff 0%, #c8e1ff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Banner de equipo lavando (Por qué Washu) */
        .why-banner {
            position: relative;
            margin: 2rem auto 2.5rem;
            max-width: 900px;
            border-radius: 22px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(0,74,173,0.06), rgba(148,182,239,0.12));
            box-shadow: 0 20px 50px rgba(0,74,173,0.15), 0 8px 20px rgba(0,0,0,0.08);
        }
        .why-banner img {
            width: 100%;
            height: auto;
            max-height: 420px;
            object-fit: contain;
            display: block;
        }
        .why-banner-overlay {
            padding: 1rem 2rem 1.4rem;
            background: linear-gradient(180deg, rgba(0,74,173,0.04) 0%, rgba(0,74,173,0.1) 100%);
        }
        .why-banner-overlay p {
            color: var(--dark-blue);
            font-size: 1.05rem;
            font-weight: 600;
            text-align: center;
            margin: 0;
        }

        /* Misión y Visión — compacto */
        .mv-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .mv-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(148,182,239,0.18);
            border-radius: 14px;
            padding: 1.5rem 1.6rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: all 0.3s;
        }
        .mv-card:hover {
            border-color: rgba(148,182,239,0.4);
            background: rgba(255,255,255,0.06);
        }
        .mv-icon {
            font-size: 1.8rem;
            line-height: 1;
            flex-shrink: 0;
        }
        .mv-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--light-blue);
            margin-bottom: 0.3rem;
        }
        .mv-card p {
            font-size: 0.88rem;
            line-height: 1.55;
            color: rgba(255,255,255,0.82);
        }

        /* Sección "Por qué Washu" */
        .why-section {
            background: #F0F4FF !important;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .why-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-left: 4px solid #1B4FD8;
            border-radius: 16px;
            padding: 2.2rem 1.6rem;
            text-align: center;
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
            box-shadow: 0 2px 10px rgba(27,79,216,0.06);
        }
        .why-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(27,79,216,0.18);
            border-left-color: #0F2D8A;
        }
        .why-emoji {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }
        .why-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1B4FD8;
            margin-bottom: 0.6rem;
        }
        .why-card p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #555;
        }

        /* CTA final */
        .about-cta {
            background-color: #0F2D8A;
            background-image:
                radial-gradient(circle at 20% 20%, rgba(148,182,239,0.18), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(27,79,216,0.35), transparent 55%),
                url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><circle cx='2' cy='2' r='1.2' fill='white' fill-opacity='0.12'/></svg>");
            background-size: auto, auto, 40px 40px;
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .about-cta::before {
            content: ''; position: absolute;
            top: -150px; right: -150px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(148,182,239,0.18), transparent 70%);
            pointer-events: none;
        }
        .about-cta::after {
            content: ''; position: absolute;
            bottom: -180px; left: -180px;
            width: 450px; height: 450px;
            background: radial-gradient(circle, rgba(27,79,216,0.25), transparent 70%);
            pointer-events: none;
        }
        .about-cta h2 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 800;
            color: white;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }
        .about-cta-btn {
            display: inline-block;
            background: white;
            color: #1B4FD8;
            padding: 1.1rem 3rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
            transition: all 0.35s ease;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }
        .about-cta-btn::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
            transition: left 0.6s ease;
        }
        .about-cta-btn:hover {
            transform: translateY(-3px);
            background: linear-gradient(135deg, #ffffff 0%, #e8efff 100%);
            color: #0F2D8A;
            box-shadow: 0 14px 40px rgba(0,0,0,0.35), 0 0 0 4px rgba(255,255,255,0.15);
        }
        .about-cta-btn:hover::before {
            left: 100%;
        }

        @media (max-width: 900px) {
            .about-section { padding: 4.5rem 2rem; }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .about-hero-image { max-width: 560px; }
            .about-cta { padding: 5rem 2rem; }
            .trimoto-block-inner {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                text-align: center;
            }
            .trimoto-story-block { min-height: 55vh; padding: 2rem 1.5rem; }
        }
        @media (max-width: 600px) {
            .about-hero { padding: 3.5rem 1.5rem 3rem; }
            .about-hero-story { font-size: 0.9rem; margin-bottom: 2rem; }
            .about-section { padding: 3.5rem 1.2rem; }
            .why-grid { grid-template-columns: 1fr; gap: 1rem; }
            .about-cta { padding: 4rem 1.5rem; }
            .about-hero-image img { border-radius: 16px; }
            .why-banner {
                margin: 1.5rem auto 2rem;
                border-radius: 16px;
            }
            .why-banner img { max-height: 280px; }
            .why-banner-overlay { padding: 0.9rem 1.2rem 1.1rem; }
            .why-banner-overlay p { font-size: 0.95rem; }
            .why-card { padding: 1.8rem 1.4rem; }
            .trimoto-story-block { min-height: 50vh; padding: 1.8rem 1.2rem; }
            .trimoto-anim.from-right { transform: translateX(120px); }
            .trimoto-anim.from-left { transform: translateX(-120px); }
            .trimoto-anim.from-zoom { transform: scale(0.75); }
        }

        /* ═══════ HOW IT WORKS — CINEMATIC CAROUSEL ═══════ */
        #como-funciona {
            background: linear-gradient(180deg, #0D1B5E 0%, #1B4FD8 100%);
            position: relative;
            overflow: hidden;
            padding: 5rem 2rem 5.5rem;
            color: white;
        }
        #como-funciona::before {
            content: ''; position: absolute;
            top: -180px; right: -180px;
            width: 480px; height: 480px;
            background: radial-gradient(circle, rgba(148,182,239,0.18), transparent 70%);
            pointer-events: none;
        }
        #como-funciona::after {
            content: ''; position: absolute;
            bottom: -200px; left: -200px;
            width: 520px; height: 520px;
            background: radial-gradient(circle, rgba(27,79,216,0.25), transparent 70%);
            pointer-events: none;
        }
        .howit-container {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        .howit-title {
            font-size: clamp(2rem, 4.5vw, 3rem);
            font-weight: 800;
            color: white;
            text-align: center;
            margin-bottom: 0.5rem;
        }
        .howit-subtitle {
            text-align: center;
            font-size: 1rem;
            color: rgba(255,255,255,0.75);
            margin-bottom: 3rem;
        }

        .howit-carousel {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
        }
        .howit-stage {
            position: relative;
            flex: 1;
            max-width: 760px;
            min-height: 560px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .howit-slide {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0s linear 0.5s;
            padding: 1rem;
        }
        .howit-slide.active {
            opacity: 1;
            visibility: visible;
            transition: opacity 0.5s ease, visibility 0s linear 0s;
        }

        .howit-number {
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 900;
            line-height: 1;
            background: linear-gradient(135deg, #ffffff 0%, #94b6ef 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.8rem;
            letter-spacing: -2px;
        }

        .howit-frame {
            position: relative;
            width: 100%;
            max-width: 460px;
            border-radius: 24px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(148,182,239,0.2);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 25px 60px rgba(0,0,0,0.35),
                        0 0 0 1px rgba(255,255,255,0.05);
        }
        .howit-frame img {
            display: block;
            width: 100%;
            height: 280px;
            object-fit: contain;
            filter: drop-shadow(0 0 60px rgba(27,79,216,0.6))
                    brightness(1.05) saturate(1.1);
        }

        .howit-step-title {
            font-size: clamp(1.4rem, 3vw, 1.9rem);
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        .howit-step-desc {
            font-size: 1rem;
            color: rgba(255,255,255,0.78);
            line-height: 1.6;
            max-width: 480px;
        }

        /* Arrows */
        .howit-arrow {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(148,182,239,0.3);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 3;
        }
        .howit-arrow svg {
            width: 24px;
            height: 24px;
        }
        .howit-arrow:hover {
            background: rgba(255,255,255,0.18);
            border-color: rgba(148,182,239,0.6);
            transform: scale(1.08);
            box-shadow: 0 8px 25px rgba(27,79,216,0.4);
        }
        .howit-arrow:active {
            transform: scale(0.96);
        }

        /* Dots */
        .howit-dots {
            display: flex;
            justify-content: center;
            gap: 0.7rem;
            margin-top: 2.5rem;
        }
        .howit-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.25);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }
        .howit-dot:hover {
            background: rgba(255,255,255,0.5);
            transform: scale(1.2);
        }
        .howit-dot.active {
            background: white;
            width: 32px;
            border-radius: 6px;
            box-shadow: 0 0 15px rgba(148,182,239,0.8);
        }

        @media (max-width: 900px) {
            #como-funciona { padding: 4rem 1.5rem; }
            .howit-carousel { gap: 0.5rem; }
            .howit-stage { min-height: 520px; }
            .howit-frame { max-width: 400px; padding: 1.2rem; }
            .howit-frame img { height: 240px; }
            .howit-arrow { width: 48px; height: 48px; }
            .howit-arrow svg { width: 20px; height: 20px; }
        }
        @media (max-width: 600px) {
            #como-funciona { padding: 3.5rem 1rem; }
            .howit-subtitle { margin-bottom: 2rem; }
            .howit-carousel { gap: 0.3rem; }
            .howit-stage { min-height: 480px; }
            .howit-frame {
                max-width: 100%;
                padding: 1rem;
                border-radius: 18px;
            }
            .howit-frame img { height: 200px; }
            .howit-arrow {
                width: 42px;
                height: 42px;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
            }
            .howit-arrow:hover { transform: translateY(-50%) scale(1.08); }
            .howit-arrow-prev { left: 0; }
            .howit-arrow-next { right: 0; }
            .howit-stage {
                padding: 0 50px;
            }
            .howit-number { margin-bottom: 0.5rem; }
            .howit-step-title { font-size: 1.3rem; }
            .howit-step-desc { font-size: 0.9rem; }
        }

/* ═══════════════════════════════════════════════════
   SECCIÓN PRIDE — "Hecho en Venezuela"
   ═══════════════════════════════════════════════════ */

.section-pride{
    position:relative;
    width:100%;
    background:
        radial-gradient(ellipse at 25% 15%, rgba(11,78,168,0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 85%, rgba(207,20,43,0.08) 0%, transparent 40%),
        linear-gradient(175deg, #0a1628 0%, #0d1f3d 50%, #0a1628 100%);
    padding:6rem 1.5rem 7rem;
    overflow:hidden;
    color:#fff;
}

.section-pride::before{
    content:'';
    position:absolute;inset:0;
    background-image:
        radial-gradient(1px 1px at 12% 25%, rgba(255,255,255,0.45) 50%, transparent),
        radial-gradient(1.2px 1.2px at 88% 18%, rgba(255,255,255,0.35) 50%, transparent),
        radial-gradient(1.5px 1.5px at 65% 62%, rgba(255,255,255,0.5) 50%, transparent),
        radial-gradient(1px 1px at 35% 78%, rgba(255,255,255,0.3) 50%, transparent),
        radial-gradient(1px 1px at 52% 8%, rgba(255,255,255,0.4) 50%, transparent),
        radial-gradient(1px 1px at 92% 88%, rgba(255,255,255,0.25) 50%, transparent),
        radial-gradient(1.3px 1.3px at 8% 55%, rgba(255,255,255,0.35) 50%, transparent);
    pointer-events:none;
    opacity:0.5;
}

.pride-tricolor{
    position:absolute;top:0;left:0;right:0;
    height:4px;display:flex;z-index:5;
}
.pride-tricolor span{flex:1;display:block}
.tri-yellow{background:linear-gradient(90deg, transparent, #fcd116 25%, #fcd116 75%, transparent)}
.tri-blue{background:linear-gradient(90deg, transparent, #0b4ea8 25%, #0b4ea8 75%, transparent)}
.tri-red{background:linear-gradient(90deg, transparent, #cf142b 25%, #cf142b 75%, transparent)}

.pride-container{
    position:relative;
    max-width:1200px;
    margin:0 auto;
    z-index:3;
}

.pride-grid{
    display:grid;
    grid-template-columns:1fr 1.15fr;
    gap:4rem;
    align-items:center;
}

.pride-text{
    opacity:0;
    transform:translateX(-40px);
    transition:opacity 0.9s cubic-bezier(.22,1,.36,1), transform 0.9s cubic-bezier(.22,1,.36,1);
}
.section-pride.is-visible .pride-text{
    opacity:1;
    transform:translateX(0);
}

.pride-title{
    font-family:'Poppins',sans-serif;
    font-size:clamp(2rem, 4.2vw, 3.5rem);
    font-weight:800;
    line-height:1.08;
    letter-spacing:-1.5px;
    margin-bottom:1.6rem;
}
.pride-title .accent{
    display:block;
    background:linear-gradient(120deg, #fcd116 0%, #ffe066 40%, #fcd116 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

.pride-desc{
    font-size:1.05rem;
    line-height:1.75;
    color:rgba(255,255,255,0.72);
    max-width:460px;
}

.pride-map-wrapper{
    position:relative;
    opacity:0;
    transform:translateX(40px) scale(0.92);
    transition:opacity 1.1s cubic-bezier(.22,1,.36,1) 0.15s,
               transform 1.1s cubic-bezier(.22,1,.36,1) 0.15s;
}
.section-pride.is-visible .pride-map-wrapper{
    opacity:1;
    transform:translateX(0) scale(1);
}

.pride-map{
    position:relative;
    width:100%;
    max-width:540px;
    margin:0 auto;
    filter:drop-shadow(0 25px 60px rgba(11,78,168,0.45));
}
.pride-map svg{width:100%;height:auto;display:block}

.vz-fill{
    fill:url(#vzGrad);
    opacity:0;
    transition:opacity 0.8s ease 2s;
}
.section-pride.is-visible .vz-fill{opacity:1}

.vz-outline{
    fill:none;
    stroke:url(#vzStroke);
    stroke-width:2.5;
    stroke-linejoin:round;
    stroke-linecap:round;
    stroke-dasharray:4000;
    stroke-dashoffset:4000;
    opacity:0;
}
.section-pride.is-visible .vz-outline{
    animation:vzDraw 2.8s cubic-bezier(.4,0,.2,1) 0.4s forwards;
}
@keyframes vzDraw{
    0%{stroke-dashoffset:4000;opacity:0}
    5%{opacity:1}
    100%{stroke-dashoffset:0;opacity:0.7}
}

.flag-group{
    opacity:0;
    transition:opacity 0.8s ease 2.6s;
}
.section-pride.is-visible .flag-group{opacity:1}

.ccs-base{
    fill:#fcd116;
    filter:drop-shadow(0 0 6px rgba(252,209,22,0.8));
}

.washu-flag{
    filter:drop-shadow(2px 3px 5px rgba(0,0,0,0.5));
}

.ccs-label{
    fill:#fff;
    font-family:'Poppins',sans-serif;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
    text-anchor:middle;
}
.ccs-coord{
    fill:rgba(255,255,255,0.45);
    font-family:'Inter',sans-serif;
    font-size:8px;
    letter-spacing:1.5px;
    text-anchor:middle;
}

@media(max-width:960px){
    .section-pride{padding:5rem 1.5rem 5.5rem}
    .pride-grid{
        grid-template-columns:1fr;
        gap:3rem;
        text-align:center;
    }
    .pride-text{transform:translateY(-25px)}
    .section-pride.is-visible .pride-text{transform:translateY(0)}
    .pride-desc{margin-left:auto;margin-right:auto}
    .pride-map-wrapper{
        transform:translateY(25px) scale(0.94);
        order:-1;
    }
    .section-pride.is-visible .pride-map-wrapper{transform:translateY(0) scale(1)}
    .pride-map{max-width:400px}
}
@media(max-width:520px){
    .pride-title{letter-spacing:-1px}
}
