
        :root {
            --orange: #E05A1A;
            --orange-light: #FF7A3A;
            --orange-glow: rgba(224, 90, 26, 0.35);
            --dark: #0D0D0D;
            --dark-2: #141414;
            --dark-3: #1C1C1C;
            --dark-4: #242424;
            --light: #F7F5F2;
            --light-2: #EFEDE9;
            --text-muted: #888884;
            --text-mid: #5A5A56;
            --border: rgba(255, 255, 255, 0.07);
            --border-light: rgba(0, 0, 0, 0.07);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            font-size: 16px;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        /* ─────────────────────────────────────────
           NOISE OVERLAY
        ──────────────────────────────────────────*/
        .noise {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.028;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }

        /* ─────────────────────────────────────────
           CURSOR PERSONALIZADO
        ──────────────────────────────────────────*/
        .cursor-dot {
            position: fixed;
            top: 0;
            left: 0;
            width: 8px;
            height: 8px;
            background: var(--orange);
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            transform: translate(-50%, -50%);
            transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
            mix-blend-mode: multiply;
        }

        .cursor-ring {
            position: fixed;
            top: 0;
            left: 0;
            width: 36px;
            height: 36px;
            border: 1.5px solid var(--orange);
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            transform: translate(-50%, -50%);
            transition: transform 0.12s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
            opacity: 0.5;
        }

        .cursor-ring.expand {
            width: 60px;
            height: 60px;
            opacity: 0.15;
            background: var(--orange);
            border-color: transparent;
        }

        /* ─────────────────────────────────────────
           SCROLL REVEAL
        ──────────────────────────────────────────*/
        .reveal {
            opacity: 0;
            visibility: hidden;
        }

        .reveal.visible {
            opacity: 1;
            visibility: visible;
        }

        /* Delays will be handled by GSAP staggered animations programmatically */

        /* ─────────────────────────────────────────
           HEADER / NAV
        ──────────────────────────────────────────*/
        #nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 500;
            padding: 0 24px;
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        #nav-inner {
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            background: rgba(247, 245, 242, 0.82);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 100px;
            padding: 0 32px;
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            margin-top: 16px;
        }

        #nav.scrolled #nav-inner {
            background: rgba(247, 245, 242, 0.95);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
            margin-top: 12px;
        }

        .nav-logo {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 22px;
            letter-spacing: -0.03em;
            text-decoration: none;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .nav-logo span {
            color: var(--orange);
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
        }

        .nav-links a {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--text-mid);
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--orange);
            transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .nav-links a:hover {
            color: var(--dark);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 26px;
            background: var(--dark);
            color: #fff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 100px;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .nav-cta:hover {
            background: var(--orange);
            box-shadow: 0 0 32px var(--orange-glow);
            transform: translateY(-2px);
        }

        .nav-cta svg {
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .nav-cta:hover svg {
            transform: translateX(4px);
        }

        /* Mobile menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            border: none;
            background: none;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 1.5px;
            background: var(--dark);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            transform-origin: center;
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(6.5px) rotate(45deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-6.5px) rotate(-45deg);
        }

        #mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--dark);
            z-index: 490;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 40px;
            transform: translateY(-100%);
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        #mobile-menu.open {
            transform: translateY(0);
        }

        #mobile-menu a {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(32px, 8vw, 56px);
            font-weight: 800;
            text-decoration: none;
            color: #fff;
            letter-spacing: -0.02em;
            transition: color 0.3s ease;
        }

        #mobile-menu a:hover {
            color: var(--orange);
        }

        /* ─────────────────────────────────────────
           HERO
        ──────────────────────────────────────────*/
        #hero {
            min-height: 100svh;
            display: grid;
            position: relative;
            overflow: hidden;
            background: var(--dark);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=2072&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            opacity: 0.35;
            animation: heroPan 40s ease-in-out infinite alternate;
        }

        @keyframes heroPan {
            from {
                transform: scale(1.05) translate(0, 0);
            }

            to {
                transform: scale(1.15) translate(-1%, -1.5%);
            }
        }

        /* Orange glow orb */
        .hero-glow {
            position: absolute;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(224, 90, 26, 0.22) 0%, transparent 70%);
            top: -200px;
            left: -100px;
            pointer-events: none;
            animation: glowPulse 8s ease-in-out infinite;
        }

        @keyframes glowPulse {

            0%,
            100% {
                opacity: 0.7;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.08);
            }
        }

        .hero-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(13, 13, 13, 0.8) 0%, rgba(13, 13, 13, 0.5) 50%, rgba(13, 13, 13, 0.2) 100%);
        }

        .hero-gradient-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 300px;
            background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
            z-index: 1;
        }

        .hero-bg-poster {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 0.75;
            transition: opacity 1s ease-in-out;
        }

        .hero-bg-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.75;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1320px;
            width: 100%;
            margin: 0 auto;
            padding: 160px 48px 160px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 18px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 100px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            margin-bottom: 36px;
            width: fit-content;
        }

        .hero-tag-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #22c55e;
            position: relative;
        }

        .hero-tag-dot::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            background: rgba(34, 197, 94, 0.4);
            animation: pingAnim 2s ease-in-out infinite;
        }

        @keyframes pingAnim {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.3;
                transform: scale(1.8);
            }
        }

        .hero-tag span {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.55);
        }

        .hero-title {
            font-size: clamp(40px, 8vw, 92px);
            line-height: 1.0;
            color: #fff;
            letter-spacing: -0.03em;
            margin-bottom: 36px;
        }

        .hero-title .highlight {
            color: transparent;
            -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
        }

        .hero-title .accent {
            color: var(--orange-light);
        }

        .hero-sub {
            font-size: clamp(16px, 2vw, 22px);
            color: rgba(255, 255, 255, 0.55);
            max-width: 650px;
            line-height: 1.65;
            font-weight: 300;
            margin-bottom: 52px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 36px;
            background: var(--orange);
            color: #fff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 100px;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px var(--orange-glow);
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 36px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: rgba(255, 255, 255, 0.75);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 100px;
            backdrop-filter: blur(8px);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .btn-ghost:hover {
            border-color: rgba(255, 255, 255, 0.8);
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
            transform: translateY(-3px);
        }

        /* Hero scroll indicator */
        .hero-scroll {
            position: absolute;
            bottom: 110px;
            right: 48px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            z-index: 10;
        }

        .hero-scroll span {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.3);
            writing-mode: vertical-rl;
        }

        .hero-scroll-line {
            width: 1px;
            height: 60px;
            background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3));
            animation: scrollLine 2s ease-in-out infinite;
        }

        @keyframes scrollLine {
            0% {
                transform: scaleY(0);
                transform-origin: top;
            }

            50% {
                transform: scaleY(1);
                transform-origin: top;
            }

            51% {
                transform: scaleY(1);
                transform-origin: bottom;
            }

            100% {
                transform: scaleY(0);
                transform-origin: bottom;
            }
        }

        /* ─────────────────────────────────────────
           TICKER / MARQUEE
        ──────────────────────────────────────────*/
        .ticker {
            background: rgba(13, 13, 13, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 0;
            overflow: hidden;
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 20;
        }

        .ticker::before,
        .ticker::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 200px;
            z-index: 2;
            pointer-events: none;
        }

        .ticker::before {
            left: 0;
            background: linear-gradient(to right, rgba(13, 13, 13, 0.9), transparent);
        }

        .ticker::after {
            right: 0;
            background: linear-gradient(to left, rgba(13, 13, 13, 0.9), transparent);
        }

        .ticker-track {
            display: flex;
            align-items: center;
            gap: 0;
            animation: tickerScroll 35s linear infinite;
            width: max-content;
        }

        @keyframes tickerScroll {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 0 40px;
            flex-shrink: 0;
        }

        .ticker-label {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 20px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: rgba(255, 255, 255, 0.08);
            transition: color 0.3s ease;
            cursor: default;
            white-space: nowrap;
        }

        .ticker-label:hover {
            color: rgba(255, 255, 255, 0.5);
        }

        .ticker-sep {
            color: var(--orange);
            font-size: 8px;
            opacity: 0.5;
        }

        /* ─────────────────────────────────────────
           SECTION: PROBLEMA
        ──────────────────────────────────────────*/
        .section {
            padding: 120px 48px;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 24px;
        }

        .section-eyebrow::before {
            content: '';
            width: 24px;
            height: 1.5px;
            background: var(--orange);
        }

        .section-title {
            font-size: clamp(32px, 4.5vw, 56px);
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        /* Problema section */
        #problema {
            background: #fff;
        }

        .problema-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .problema-text .section-title {
            font-size: clamp(32px, 4.5vw, 56px);
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .problema-text .section-title .muted {
            color: #C8C6C2;
        }

        .problema-body {
            font-size: 18px;
            color: var(--text-mid);
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 40px;
        }

        .pain-items {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .pain-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px 24px;
            background: var(--light);
            border-radius: 16px;
            border: 1px solid var(--border-light);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .pain-item:hover {
            background: #fff;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
            transform: translateX(6px);
        }

        .pain-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(224, 90, 26, 0.1);
            color: var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 18px;
        }

        .pain-text {
            font-size: 15px;
            font-weight: 500;
            color: var(--dark);
            line-height: 1.5;
            padding-top: 8px;
        }

        .problema-visual {
            position: relative;
        }

        .problema-img-wrap {
            border-radius: 32px;
            overflow: hidden;
            aspect-ratio: 4/5;
            position: relative;
        }

        .problema-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .problema-img-wrap:hover img {
            transform: scale(1.04);
        }

        .float-card {
            position: absolute;
            bottom: -24px;
            left: -32px;
            background: #fff;
            border-radius: 24px;
            padding: 24px 28px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            gap: 20px;
            min-width: 260px;
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .float-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 36px 80px rgba(0, 0, 0, 0.15);
        }

        .float-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--orange);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 0 24px var(--orange-glow);
        }

        .float-card-value {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--dark);
            line-height: 1;
        }

        .float-card-label {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* Float card top right */
        .float-card-2 {
            position: absolute;
            top: 32px;
            right: -32px;
            background: var(--dark);
            border-radius: 20px;
            padding: 20px 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border);
            min-width: 200px;
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .float-card-2:hover {
            transform: translateY(-4px);
        }

        .float-card-2-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 10px;
        }

        .float-card-2-bars {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mini-bar {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mini-bar-track {
            flex: 1;
            height: 4px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 2px;
            overflow: hidden;
        }

        .mini-bar-fill {
            height: 100%;
            border-radius: 2px;
        }

        .mini-bar-fill.red {
            background: #ef4444;
            width: 90%;
            box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
        }

        .mini-bar-fill.orange {
            background: var(--orange);
            width: 10%;
            box-shadow: 0 0 8px var(--orange-glow);
        }

        .mini-bar-num {
            font-size: 12px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.6);
            width: 42px;
            text-align: right;
        }

        /* ─────────────────────────────────────────
           SECTION: NÚMEROS (SOLAR TEXTURE)
        ──────────────────────────────────────────*/
        @keyframes solarGlint {
            0% {
                left: -100%;
            }

            15% {
                left: 200%;
            }

            100% {
                left: 200%;
            }
        }

        #numeros {
            background: var(--dark);
            padding: 80px 48px;
            display: flex;
            justify-content: center;
        }

        .numeros-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cidade-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            background: var(--dark-2);
            border: 1px solid var(--border);
            aspect-ratio: 3/4;
            cursor: pointer;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
        }

        .cidade-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(224, 90, 26, 0.15);
            border-color: rgba(224, 90, 26, 0.4);
        }

        .cidade-card .bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .cidade-card:hover .bg-img {
            transform: scale(1.08);
        }

        .cidade-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.2) 50%, transparent 100%);
            transition: background 0.5s ease;
        }

        .cidade-card:hover .cidade-overlay {
            background: linear-gradient(to top, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.8) 60%, rgba(13, 13, 13, 0.4) 100%);
        }

        .cidade-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 32px 24px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
        }

        .cidade-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), margin-bottom 0.5s ease;
            transform: translateY(20px);
        }

        .cidade-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            max-height: 0;
            overflow: hidden;
        }

        .cidade-card:hover .cidade-title {
            transform: translateY(0);
            margin-bottom: 12px;
        }

        .cidade-card:hover .cidade-desc {
            opacity: 1;
            transform: translateY(0);
            max-height: 200px;
        }

        /* ─────────────────────────────────────────
           SECTION: SOLUCOES
        ──────────────────────────────────────────*/
        #solucoes {
            background: var(--light);
        }

        .solucoes-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 64px;
            gap: 32px;
        }

        .solucoes-header .section-title {
            font-size: clamp(32px, 4.5vw, 56px);
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: auto;
            gap: 16px;
        }

        .bento-card {
            border-radius: 28px;
            overflow: hidden;
            position: relative;
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: pointer;
        }

        .bento-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
        }

        .bento-1 {
            grid-column: span 7;
        }

        .bento-2 {
            grid-column: span 5;
        }

        .bento-3 {
            grid-column: span 5;
        }

        .bento-4 {
            grid-column: span 7;
        }

        .bento-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .bento-card:hover .bento-img {
            transform: scale(1.06);
        }

        .bento-body {
            padding: 32px 36px;
        }

        .bento-light {
            background: #fff;
            border: 1px solid var(--border-light);
        }

        .bento-dark {
            background: var(--dark-3);
        }

        .bento-orange {
            background: var(--orange);
        }

        .bento-tag {
            display: inline-flex;
            align-items: center;
            padding: 5px 12px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .bento-light .bento-tag {
            background: var(--light-2);
            color: var(--orange);
        }

        .bento-dark .bento-tag {
            background: rgba(255, 255, 255, 0.06);
            color: rgba(255, 255, 255, 0.5);
        }

        .bento-orange .bento-tag {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        .bento-title {
            font-size: clamp(22px, 2.5vw, 32px);
            letter-spacing: -0.02em;
            margin-bottom: 12px;
        }

        .bento-light .bento-title {
            color: var(--dark);
        }

        .bento-dark .bento-title {
            color: #fff;
        }

        .bento-orange .bento-title {
            color: #fff;
        }

        .bento-desc {
            font-size: 15px;
            line-height: 1.65;
            font-weight: 300;
        }

        .bento-light .bento-desc {
            color: var(--text-mid);
        }

        .bento-dark .bento-desc {
            color: rgba(255, 255, 255, 0.45);
        }

        .bento-orange .bento-desc {
            color: rgba(255, 255, 255, 0.8);
        }

        .bento-arrow {
            position: absolute;
            top: 28px;
            right: 28px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .bento-light .bento-arrow {
            background: var(--light-2);
            color: var(--dark);
        }

        .bento-dark .bento-arrow {
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
        }

        .bento-orange .bento-arrow {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        .bento-card:hover .bento-arrow {
            transform: rotate(45deg);
            background: var(--orange);
            color: #fff;
            box-shadow: 0 0 20px var(--orange-glow);
        }

        /* ─────────────────────────────────────────
           SECTION: PROCESSO
        ──────────────────────────────────────────*/
        #processo {
            background: #fff;
        }

        .processo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .processo-steps {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
            padding-left: 32px;
        }

        .processo-steps::before {
            content: '';
            position: absolute;
            left: 56px;
            top: 48px;
            bottom: 48px;
            width: 1px;
            background: var(--border-light);
            z-index: 1;
        }

        .step-item {
            position: relative;
            z-index: 2;
            display: flex;
            gap: 32px;
            padding: 32px 0 32px 0;
            cursor: default;
            transition: all 0.4s ease;
        }

        .step-item:first-child {
            padding-top: 0;
        }

        .step-num {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: #fff;
            color: var(--text-muted);
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 800;
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            z-index: 3;
        }

        .step-item:hover .step-num {
            background: var(--orange);
            color: #fff;
            border-color: var(--orange);
            box-shadow: 0 0 20px var(--orange-glow);
            transform: scale(1.05);
        }

        .step-content {
            padding-top: 8px;
        }

        .step-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--dark);
            letter-spacing: -0.01em;
        }

        .step-desc {
            font-size: 15px;
            color: var(--text-mid);
            line-height: 1.65;
            font-weight: 300;
        }

        .processo-visual {
            position: sticky;
            top: 120px;
        }

        .processo-img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            border-radius: 28px;
        }

        /* ─────────────────────────────────────────
           SECTION: IMPACTO / GRÁFICO
        ──────────────────────────────────────────*/
        #impacto {
            background: var(--dark);
        }

        .impacto-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .impacto-text .section-eyebrow {
            color: var(--orange-light);
        }

        .impacto-text .section-eyebrow::before {
            background: var(--orange-light);
        }

        .impacto-text .section-title {
            font-size: clamp(32px, 4.5vw, 56px);
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .impacto-text .body {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 48px;
        }

        .comparison-box {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 36px;
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .comp-row {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .comp-label {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .comp-label.before {
            color: rgba(255, 255, 255, 0.35);
        }

        .comp-label.after {
            color: var(--orange);
        }

        .comp-bar-wrap {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .comp-bar {
            flex: 1;
            height: 10px;
            border-radius: 5px;
            overflow: hidden;
        }

        .comp-bar.before-track {
            background: rgba(239, 68, 68, 0.15);
        }

        .comp-bar.after-track {
            background: rgba(224, 90, 26, 0.15);
        }

        .comp-fill {
            height: 100%;
            border-radius: 5px;
            transform-origin: left;
            transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .comp-fill.before-fill {
            background: linear-gradient(to right, #ef4444, #f97316);
            transform: scaleX(0);
        }

        .comp-fill.after-fill {
            background: linear-gradient(to right, var(--orange), var(--orange-light));
            transform: scaleX(0);
        }

        .comp-fill.animated {
            transform: scaleX(1);
        }

        .comp-value {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .comp-value.before {
            color: #f97316;
        }

        .comp-value.after {
            color: var(--orange-light);
        }

        /* Dashboard card */
        .dashboard-card {
            background: var(--dark-3);
            border: 1px solid var(--border);
            border-radius: 32px;
            padding: 40px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
        }

        .dash-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 36px;
        }

        .dash-title {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
        }

        .dash-badge {
            padding: 6px 14px;
            border-radius: 100px;
            background: rgba(34, 197, 94, 0.12);
            border: 1px solid rgba(34, 197, 94, 0.2);
            font-size: 12px;
            font-weight: 600;
            color: #22c55e;
        }

        .chart-bars {
            display: flex;
            align-items: flex-end;
            height: 180px;
            gap: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding-bottom: 16px;
            margin-bottom: 16px;
        }

        .chart-col {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            height: 100%;
            justify-content: flex-end;
        }

        .chart-bar-el {
            width: 100%;
            border-radius: 8px 8px 4px 4px;
            height: 0;
            transition: height 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .chart-bar-el.bar-red {
            background: linear-gradient(to top, #b91c1c, #ef4444);
            box-shadow: 0 0 12px rgba(239, 68, 68, 0.25);
        }

        .chart-bar-el.bar-yellow {
            background: linear-gradient(to top, #d97706, #f59e0b);
            box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
        }

        .chart-bar-el.bar-orange {
            background: linear-gradient(to top, #b45309, var(--orange));
            box-shadow: 0 0 12px var(--orange-glow);
        }

        .chart-month {
            font-size: 11px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.3);
            letter-spacing: 0.04em;
        }

        .chart-month.active {
            color: rgba(255, 255, 255, 0.8);
        }

        /* ─────────────────────────────────────────
           SECTION: BENEFÍCIOS
        ──────────────────────────────────────────*/
        #beneficios {
            background: var(--light-2);
        }

        .beneficios-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
        }

        .b-card {
            border-radius: 32px;
            padding: 48px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .b-card:hover {
            transform: translateY(-6px);
        }

        .b-card-img {
            grid-column: span 8;
            background: var(--dark-2);
            color: #fff;
            min-height: 420px;
            justify-content: space-between;
        }

        .b-card-img img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
            mix-blend-mode: luminosity;
            transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .b-card:hover .b-card-img img {
            transform: scale(1.05);
        }

        .b-card-img .content {
            position: relative;
            z-index: 2;
        }

        .b-card-stat {
            grid-column: span 4;
            background: var(--orange);
            color: #fff;
            justify-content: space-between;
        }

        .b-card-light {
            grid-column: span 4;
            background: #fff;
            border: 1px solid var(--border-light);
        }

        .b-card-dark {
            grid-column: span 4;
            background: var(--dark);
            color: #fff;
        }

        .b-stat-val {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 80px;
            font-weight: 800;
            line-height: 0.9;
            letter-spacing: -0.04em;
            margin-bottom: 24px;
        }

        .b-card-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: auto;
        }

        .b-card-light .b-card-icon {
            background: var(--light-2);
            color: var(--orange);
        }

        .b-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
            color: inherit;
        }

        .b-desc {
            font-size: 15px;
            line-height: 1.6;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.7);
        }

        .b-card-light .b-desc {
            color: var(--text-mid);
        }

        /* ─────────────────────────────────────────
           SECTION: CASOS DE SUCESSO
        ──────────────────────────────────────────*/
        #casos {
            background: var(--light);
            padding-bottom: 40px;
        }

        .casos-stack {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .caso-card {
            background: #fff;
            border-radius: 32px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
            border: 1px solid var(--border-light);
        }

        .caso-img-wrapper {
            position: relative;
        }

        .caso-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 400px;
        }

        .caso-tag {
            position: absolute;
            top: 24px;
            left: 24px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 8px 16px;
            border-radius: 100px;
        }

        .caso-content {
            padding: 48px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .caso-client {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }

        .caso-local {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .caso-metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            padding-top: 32px;
            border-top: 1px solid var(--border-light);
        }

        .metric-label {
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .metric-val {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: var(--orange);
            letter-spacing: -0.02em;
        }

        .metric-val.dark {
            color: var(--dark);
        }

        /* ─────────────────────────────────────────
           SECTION: DEPOIMENTOS
        ──────────────────────────────────────────*/
        #depoimentos {
            background: #fff;
            overflow: hidden;
        }

        .depoimentos-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 56px;
        }

        .depoimentos-track-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            /* Optional fading masks at the edges */
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            padding: 20px 0;
        }

        .depoimentos-track {
            display: flex;
            gap: 24px;
            width: max-content;
            animation: ticker 40s linear infinite;
        }

        .depoimentos-track:hover {
            animation-play-state: paused;
        }

        @keyframes ticker {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-50% - 12px));
            }

            /* 12px is half the gap to maintain smooth loop */
        }

        .depoimento-card {
            width: 400px;
            /* Fixed width for ticker */
            flex-shrink: 0;
            padding: 48px 40px;
            border-radius: 28px;
            background: var(--light);
            border: 1px solid var(--border-light);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .depoimento-card::before {
            content: '"';
            position: absolute;
            top: 32px;
            right: 40px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 120px;
            color: rgba(0, 0, 0, 0.03);
            line-height: 1;
        }

        .depoimento-card:hover {
            background: #fff;
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.06);
            transform: translateY(-8px);
        }

        .depoimento-stars {
            color: var(--orange);
            display: flex;
            gap: 4px;
            margin-bottom: 24px;
        }

        .depoimento-stars svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .depoimento-text {
            font-size: 17px;
            color: var(--dark);
            line-height: 1.7;
            font-weight: 400;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .depoimento-author {
            display: flex;
            align-items: center;
            gap: 16px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            padding-top: 24px;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-name {
            font-size: 15px;
            font-weight: 700;
            color: var(--dark);
            letter-spacing: -0.01em;
        }

        .author-role {
            font-size: 13px;
            color: var(--text-muted);
        }

        .depo-saving {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 100px;
            margin-top: 8px;
            background: rgba(224, 90, 26, 0.08);
            color: var(--orange);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        /* ─────────────────────────────────────────
           SECTION: SIMULADOR / CTA
        ──────────────────────────────────────────*/
        #simulador {
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .simulador-glow {
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(224, 90, 26, 0.18) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .simulador-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .simulador-left .section-title {
            font-size: clamp(32px, 4.5vw, 56px);
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .simulador-left .body {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 40px;
        }

        .simulador-left .garantia {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 24px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border);
        }

        .garantia-icon {
            color: #22c55e;
            font-size: 20px;
        }

        .garantia-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 400;
        }

        .garantia-text strong {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 600;
        }

        .simulador-form {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border);
            border-radius: 32px;
            padding: 48px;
            backdrop-filter: blur(16px);
        }

        .form-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
        }

        .form-subtitle {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 36px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            color: #fff;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            outline: none;
            transition: all 0.3s ease;
            appearance: none;
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.2);
        }

        .form-group input:focus,
        .form-group select:focus {
            border-color: rgba(224, 90, 26, 0.5);
            background: rgba(255, 255, 255, 0.07);
            box-shadow: 0 0 0 4px rgba(224, 90, 26, 0.1);
        }

        .form-group select option {
            background: var(--dark-3);
            color: #fff;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .btn-form {
            width: 100%;
            padding: 18px;
            background: var(--orange);
            color: #fff;
            border: none;
            border-radius: 14px;
            cursor: pointer;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.02em;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 8px;
        }

        .btn-form:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
            box-shadow: 0 16px 40px var(--orange-glow);
        }

        .form-note {
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.25);
            margin-top: 16px;
        }

        /* ─────────────────────────────────────────
           FOOTER
        ──────────────────────────────────────────*/
        footer {
            background: var(--dark-2);
            padding: 80px 48px 40px;
            border-top: 1px solid var(--border);
        }

        .footer-grid {
            max-width: 1320px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 40px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-tagline {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.35);
            line-height: 1.7;
            font-weight: 300;
            max-width: 280px;
        }

        .footer-col-title {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 24px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.35);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 400;
        }

        .footer-links a:hover {
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-bottom {
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copy {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.2);
        }

        .footer-badge {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.15);
        }

        /* Whatsapp Floating */
        .whatsapp-float {
            position: fixed;
            bottom: 32px;
            right: 32px;
            z-index: 400;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            animation: waPulse 3s ease-in-out infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1) translateY(-4px);
            box-shadow: 0 16px 48px rgba(37, 211, 102, 0.5);
        }

        @keyframes waPulse {

            0%,
            100% {
                box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
            }

            50% {
                box-shadow: 0 8px 48px rgba(37, 211, 102, 0.6);
            }
        }

        /* ─────────────────────────────────────────
           RESPONSIVE
        ──────────────────────────────────────────*/
        @media (max-width: 1100px) {
            .bento-1 {
                grid-column: span 12;
            }

            .bento-2 {
                grid-column: span 12;
            }

            .bento-3 {
                grid-column: span 12;
            }

            .bento-4 {
                grid-column: span 12;
            }

            .numeros-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .beneficios-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .depoimentos-track {
                grid-template-columns: 1fr 1fr;
            }

            .simulador-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }
        }

        @media (max-width: 860px) {
            .section {
                padding: 80px 24px;
            }

            #numeros {
                padding: 64px 24px;
            }

            footer {
                padding: 60px 24px 32px;
            }

            #nav {
                padding: 0 16px;
            }

            #nav-inner {
                height: 60px !important;
            }

            #hero {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                padding-top: 80px;
            }

            .hero-content {
                padding: 10px 24px 20px;
                text-align: left;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
                margin-top: 0;
            }

            .hero-title {
                margin-bottom: 20px !important;
            }

            .hero-sub {
                margin-bottom: 30px !important;
            }

            .hero-tag {
                max-width: 100%;
                border-radius: 20px;
                padding: 10px 16px;
                white-space: normal;
                height: auto;
            }

            .hero-tag span {
                font-size: 10px;
                line-height: 1.4;
            }

            .hero-actions .btn-ghost {
                display: none !important;
            }

            .hero-scroll {
                right: 24px;
                bottom: 110px;
            }

            .nav-links,
            .nav-cta {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .problema-grid {
                grid-template-columns: 1fr;
            }

            .float-card {
                display: none;
            }

            .float-card-2 {
                display: none;
            }

            .impacto-grid {
                grid-template-columns: 1fr;
            }

            .processo-grid {
                grid-template-columns: 1fr;
            }

            .processo-visual {
                display: none;
            }

            .numeros-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .beneficios-grid {
                grid-template-columns: 1fr 1fr;
            }

            .depoimentos-track {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }

            .solucoes-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .cursor-dot,
            .cursor-ring {
                display: none;
            }

            /* --- Ajustes Mobile (Fase 2) --- */
            .bento-4 .bento-body {
                flex-direction: column !important;
                padding: 32px !important;
                gap: 24px !important;
                text-align: center !important;
            }

            .caso-card {
                grid-template-columns: 1fr !important;
            }

            .caso-img {
                min-height: 250px;
            }

            .desktop-br {
                display: none;
            }

            #mobile-menu a {
                font-size: clamp(28px, 6vw, 42px) !important;
            }

            /* --- Ajustes Mobile (Fase 3) --- */
            #impacto .container {
                padding: 0 24px !important;
            }

            .depoimentos-header {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 24px !important;
            }

            .hero-actions {
                align-items: center !important;
            }

            .hero-actions>div {
                justify-content: center !important;
            }

            .cidade-title {
                font-size: clamp(20px, 6vw, 24px) !important;
                word-break: break-all;
            }
        }

        @media (max-width: 520px) {
            .numero-cell {
                padding: 36px 24px;
            }

            .beneficios-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ─────────────────────────────────────────
           SECTION: POR QUE A EXTRA ENERGIA (COMPARAÇÃO)
        ──────────────────────────────────────────*/
        #por-que-extra {
            background: var(--dark-2);
            position: relative;
        }

        .compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 48px;
        }

        @media (max-width: 900px) {
            .compare-grid {
                grid-template-columns: 1fr;
            }
        }

        .compare-column {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: transform 0.4s ease;
        }

        .compare-column.highlight {
            background: linear-gradient(145deg, rgba(224, 90, 26, 0.1) 0%, rgba(224, 90, 26, 0.02) 100%);
            border-color: rgba(224, 90, 26, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .compare-column:hover {
            transform: translateY(-5px);
        }

        .compare-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .compare-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .compare-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .compare-icon.red {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }

        .compare-icon.green {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
        }

        .compare-text {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.5;
            flex: 1;
        }

        .compare-column.highlight .compare-text {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
        }

        .compare-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .compare-column:not(.highlight) .compare-title {
            color: rgba(255, 255, 255, 0.5);
        }

        /* ─────────────────────────────────────────
           SECTION: CERTIFICAÇÕES
        ──────────────────────────────────────────*/
        .cert-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            margin-top: 48px;
            position: relative;
            z-index: 2;
        }

        .cert-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 24px 32px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.4s ease;
            backdrop-filter: blur(8px);
            min-width: 250px;
            flex: 1;
        }

        .cert-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cert-icon {
            color: var(--orange);
            opacity: 0.8;
            transition: transform 0.4s ease, color 0.4s ease;
        }

        .cert-card:hover .cert-icon {
            transform: scale(1.1);
            color: var(--orange-light);
            opacity: 1;
        }

        .cert-info h4 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 4px;
            font-weight: 700;
        }

        .cert-info p {
            color: var(--text-mid);
            font-size: 13px;
        }

        /* ─────────────────────────────────────────
           SECTION: BLOG / CONTEÚDO
        ──────────────────────────────────────────*/
        .blog-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .blog-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.4s ease;
            backdrop-filter: blur(8px);
            text-decoration: none;
            color: inherit;
        }

        .blog-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .blog-img-wrapper {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .blog-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .blog-card:hover .blog-img {
            transform: scale(1.05);
        }

        .blog-tag {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--orange);
            color: #fff;
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            z-index: 2;
        }

        .blog-content {
            padding: 32px 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .blog-date {
            color: rgba(255, 255, 255, 0.4);
            font-size: 13px;
            margin-bottom: 12px;
        }

        .blog-title {
            color: #fff;
            font-size: 20px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 16px;
            transition: color 0.3s ease;
        }

        .blog-card:hover .blog-title {
            color: var(--orange-light);
        }

        .blog-excerpt {
            color: var(--text-mid);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 24px;
            flex: 1;
        }

        .blog-read-more {
            color: var(--orange);
            font-size: 14px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: gap 0.3s ease;
        }

        .blog-card:hover .blog-read-more {
            gap: 12px;
        }

        .hero-counter-box {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-left: 16px;
        }

        /* ─────────────────────────────────────────
           LEAFLET CUSTOM POPUP
        ──────────────────────────────────────────*/
        .custom-popup .leaflet-popup-content-wrapper {
            background: #fff;
            color: #0D0D0D;
            border-radius: 12px;
            padding: 0;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .custom-popup .leaflet-popup-content {
            margin: 0;
            padding: 0;
        }

        .custom-popup .leaflet-popup-tip {
            background: #fff;
        }

        .custom-leaflet-marker {
            background: transparent;
            border: none;
        }
    

        .solar-bg {
            background-color: #07090D !important;
            /* Dark bluish panel tint */
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.07) 1.5px, transparent 1.5px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1.5px, transparent 1.5px) !important;
            background-size: 60px 60px !important;
            position: relative;
            overflow: hidden !important;
        }

        .solar-bg::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06), transparent);
            transform: skewX(-25deg);
            animation: solarGlint 10s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
            pointer-events: none;
            z-index: 0;
        }

        .solar-bg .container {
            position: relative;
            z-index: 1;
        }

        .infra-section {
            padding-bottom: 50px;
            padding-top: 100px;
        }

        .infra-section .section-title {
            font-size: clamp(32px, 4.5vw, 56px);
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .globe-container {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 60px 40px;
            min-height: 520px;
            /* BACKGROUND gradients and patterns removed here, moved to master container later */
            border: none;
            border-radius: 32px;
            margin: 60px auto 0;
            max-width: 1240px;
            z-index: 1;
        }

        /* .globe-container::before REMOVED. Will be placed on larger containers. */
        @media (max-width: 900px) {
            .globe-container {
                flex-direction: column;
                gap: 60px;
                padding: 40px 20px;
                align-items: center;
            }
        }

        

        #cobe:active {
            cursor: grabbing;
        }

        @media (max-width: 900px) {
            
        }


/* Escala de PC (Ajustada para não tocar nos cards) */
#canvas-container {
    position: relative;
    width: 100%;
    max-width: 480px; 
    height: 480px;    
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: grab;
}
#canvas-container:active { cursor: grabbing; }

/* Escala Cirúrgica (Mobile) */
@media (max-width: 768px) {
    #canvas-container {
        max-width: 100%;
        height: 380px;
    }
}
@media (max-width: 480px) {
    #canvas-container {
        height: 340px;
    }
}

        .globe-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(224, 90, 26, 0.3) 0%, transparent 60%);
            z-index: 1;
            pointer-events: none;
            border-radius: 50%;
        }

        .globe-card {
            z-index: 3;
            text-align: center;
            background: rgba(10, 10, 10, 0.6);
            backdrop-filter: blur(10px);
            padding: 24px 32px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            max-width: 380px;
            min-width: 340px;
            /* INCREASED */
            flex: 1;
            transition: transform 0.3s ease;
        }

        .globe-card:hover {
            transform: translateY(-5px);
        }

        .globe-title {
            display: inline-flex;
            align-items: flex-start;
            justify-content: center;
            gap: 4px;
            white-space: nowrap;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(48px, 5vw, 64px);
            font-weight: 800;
            color: #fff;
            line-height: 1;
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }

        .globe-subtitle {
            font-size: 12px;
            font-weight: 700;
            color: var(--orange);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            opacity: 0.9;
        }
    

        .map-point {
            transition: all 0.3s;
            z-index: 10;
        }

        .map-point:hover {
            z-index: 9999 !important;
        }

        .map-tooltip {
            position: absolute;
            top: calc(100% + 15px);
            left: 50%;
            transform: translateX(-50%) translateY(-20px) scale(0.9);
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 10px;
            width: 260px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 10000;
            pointer-events: none;
        }

        .map-point:hover .map-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0) scale(1);
        }

        .map-tooltip img {
            width: 100%;
            height: 120px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 8px;
        }

        .tooltip-content {
            text-align: left;
            font-size: 13px;
            color: var(--text-mid);
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .tooltip-content strong {
            color: var(--dark);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
        }

        .tooltip-content .economia {
            color: var(--green);
            font-weight: 700;
        }

        .pin::after {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 2px solid var(--orange);
            opacity: 0;
            animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        @keyframes ping {

            75%,
            100% {
                transform: scale(2);
                opacity: 0;
            }

            0% {
                opacity: 0.5;
                transform: scale(1);
            }
        }
    

        #impacto {
            padding: 100px 0;
        }
    

        .modern-benefits-section {
            background: #ffffff;
            padding: 120px 48px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .modern-benefits-header {
            display: flex;
            flex-direction: column;
            gap: 32px;
            margin-bottom: 64px;
            justify-content: space-between;
        }

        @media (min-width: 1024px) {
            .modern-benefits-header {
                flex-direction: row;
                align-items: flex-end;
            }
        }

        .modern-benefits-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        @media (min-width: 768px) {
            .modern-benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .modern-benefits-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .modern-b-card {
            border-radius: 32px;
            padding: 48px 32px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            color: #fff;
            position: relative;
            overflow: hidden;
            min-height: 520px;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: pointer;
        }

        .modern-b-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
        }

        .modern-b-card .bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .modern-b-card:hover .bg-img {
            transform: scale(1.08);
        }

        .modern-b-overlay {
            position: absolute;
            inset: 0;
            z-index: 10;
        }

        .modern-b-content {
            position: relative;
            z-index: 20;
        }

        .modern-b-val {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(38px, 4vw, 48px);
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.03em;
            line-height: 1;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .modern-b-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.6;
            font-weight: 400;
            max-width: 220px;
        }
    

        @keyframes loopLogos {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .mvv-card:hover {
            transform: translateY(-8px);
            border-color: rgba(224, 90, 26, 0.3) !important;
        }

        .team-photo-row:hover img {
            filter: brightness(1.1);
        }

        @media (max-width: 900px) {
            .team-grid {
                grid-template-columns: 1fr !important;
            }

            .team-video-card {
                min-height: 300px !important;
            }
        }
    

/* =========================================
   CINEMATIC 3D WIREFRAME GLOBE UI
   ========================================= */

.globe-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: radial-gradient(circle at center, rgba(224, 90, 26, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: containerBreathing 8s ease-in-out infinite alternate;
}

@keyframes containerBreathing {
    0% { opacity: 0.5; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1); }
}

.wireframe-globe-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 50%;
}

.wireframe-earth {
    width: 480px;
    height: 480px;
    object-fit: contain;
    position: absolute;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 0 60px rgba(255,255,255,0.08));
}

.orbital-rings {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    z-index: 1;
}

.orbital-rings::before,
.orbital-rings::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 20%,
        rgba(255, 255, 255, 0.4) 40%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 60%,
        transparent 100%
    );
    filter: blur(25px);
    animation: orbitalSpin 12s linear infinite;
    mix-blend-mode: screen;
}

.orbital-rings::after {
    inset: -30px;
    background: conic-gradient(
        from 180deg,
        transparent 0%,
        rgba(224, 90, 26, 0.05) 30%,
        rgba(224, 90, 26, 0.25) 50%,
        transparent 70%,
        transparent 100%
    );
    filter: blur(40px);
    animation: orbitalSpinReverse 25s linear infinite;
    opacity: 0.8;
}

@keyframes orbitalSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes orbitalSpinReverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

.salinas-ping {
    position: absolute;
    top: 61%; 
    left: 68%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ping-dot {
    width: 14px;
    height: 14px;
    background-color: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 25px 8px rgba(224, 90, 26, 0.9);
    position: relative;
    z-index: 2;
}

.ping-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    animation: pingShockwave 2s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
    z-index: 1;
}

.ping-icon {
    position: absolute;
    top: -30px;
    color: var(--orange);
    filter: drop-shadow(0 5px 8px rgba(0,0,0,0.6));
    animation: floatingIcon 3s ease-in-out infinite;
}

@keyframes pingShockwave {
    0% { width: 14px; height: 14px; opacity: 1; border-width: 3px; }
    100% { width: 90px; height: 90px; opacity: 0; border-width: 0px; }
}

@keyframes floatingIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
