    /* ==========================================================================
           RESET E CONFIGURAÇÕES DE FLUXO
           ========================================================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #0b0b0b;
            font-family: 'Inter', sans-serif;
            min-height: 200vh;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        [id] {
            scroll-margin-top: 110px;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #0b0b0b 0%, #111315 50%, #161a1d 100%);
            z-index: -1;
        }

        /* NAVBAR FIXA NO TOPO */
        .hero-section {
            width: 100%;
            height: 90px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 100;
            background-color: rgba(11, 11, 11, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: height 0.4s ease, background-color 0.4s ease, border-bottom 0.4s ease;
        }

        .scrolled .hero-section {
            background-color: rgba(11, 11, 11, 0.98);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            height: 80px;
        }

        .nav-wrapper {
            width: 100%;
            max-width: 1400px;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* CONTÊINER DA LOGO */
        .logo-container {
            width: 140px;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            transition: max-width 0.4s ease, opacity 0.4s ease;
            z-index: 102; /* Mantém acima do menu mobile */
        }

        .logo-svg {
            width: 100%;
            height: auto;
            display: block;
            overflow: visible; 
        }

        /* MENU SUPERIOR (DESKTOP) */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: clamp(15px, 2.5vw, 35px);
            white-space: nowrap;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: clamp(0.85rem, 1.1vw, 0.95rem);
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            position: relative;
            padding: 10px 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: #ffffff;
            transition: width 0.3s ease;
        }

        .nav-link:hover { color: #ffffff; }
        .nav-link:hover::after { width: 100%; }

        /* BOTAO TRIGGER DO MENU MOBILE (HAMBURGUER) */
        .menu-toggle {
            display: none; /* Oculto por padrão no Desktop */
            flex-direction: column;
            justify-content: space-between;
            width: 26px;
            height: 18px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 102; /* Acima do overlay */
            padding: 0;
        }

        .menu-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: #ffffff;
            border-radius: 2px;
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, background-color 0.3s ease;
        }

        /* PAINEL MOBILE OVERLAY */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(11, 11, 11, 0.98);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            z-index: 101;
            display: flex;
            justify-content: center;
            align-items: center;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, visibility 0.5s ease;
        }

        .mobile-menu-overlay.open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-menu {
            list-style: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 32px;
            text-align: center;
            padding: 0;
        }

        .mobile-nav-link {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            transition: color 0.3s ease, transform 0.3s ease;
            display: inline-block;
        }

        .mobile-nav-link:hover {
            color: #ffffff;
            transform: scale(1.05);
        }

        /* ==========================================================================
           ANIMAÇÃO DE DESENHO NAS LETRAS (STROKE ANIMATION)
           ========================================================================== */
        .anim-letra {
            stroke: #ffffff;
            stroke-width: 2px;
            stroke-dasharray: 1200; 
            stroke-dashoffset: 1200;
            fill: transparent;
            animation: desenharEPreencher 2.2s ease-in-out forwards;
            transition: opacity 0.3s ease;
        }

        .letra-f  { animation-delay: 0.1s; }
        .letra-i1 { animation-delay: 0.2s; }
        .letra-i2 { animation-delay: 0.3s; }
        .letra-k  { animation-delay: 0.4s; }
        .letra-u  { animation-delay: 0.6s; }
        .letra-p  { animation-delay: 0.7s; }

        @keyframes desenharEPreencher {
            0% { stroke-dashoffset: 1200; fill: transparent; }
            70% { stroke-dashoffset: 0; fill: transparent; }
            100% { stroke-dashoffset: 0; fill: #ffffff; }
        }

        /* GLOW EFFECT E ONDA DE EXPANSÃO (ECO) */
        .anim-icone {
            opacity: 0;
            filter: url(#neonGlow); 
            animation: 
                surgirIcone 0.8s ease-out 2.6s forwards,
                pulsarNeon 2s ease-in-out infinite alternate 3.4s;
        }

        @keyframes surgirIcone { to { opacity: 1; } }
        @keyframes pulsarNeon {
            0% { filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4)); }
            100% { filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8)); }
        }

        .anim-icone-eco {
            opacity: 0;
            transform-origin: 965px 530px; 
            animation: expandirEsumirTela 1.4s cubic-bezier(0.1, 0.8, 0.3, 1) 2.8s forwards;
            pointer-events: none;
        }

        @keyframes expandirEsumirTela {
            0% { transform: scale(1); opacity: 0.9; stroke-width: 4px; }
            30% { opacity: 0.6; }
            100% { transform: scale(15); opacity: 0; stroke-width: 0.2px; }
        }

        .grupo-quadrado, .grupo-up {
            transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
        }

        .logo-montada .grupo-quadrado { transform: translateX(275px); }
        .logo-montada .grupo-up { transform: translateX(-215px); }

        .scrolled .logo-container { max-width: 100px; }
        .scrolled .anim-letra { opacity: 0; }
        .scrolled .grupo-fik, .scrolled .grupo-up { opacity: 0; }
        .scrolled .anim-icone-eco { display: none; }
        .scrolled .logo-container .grupo-quadrado { transform: translateX(-220px) !important; }



        .video-scroll-section {
            min-height: 100vh;
            position: relative;
            background: #0b0b0b;
        }

        .about-section {
            width: 100%;
            padding: 110px 24px 30px;
            color: #ffffff;
        }

        .about-wrapper {
            max-width: 1240px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
            gap: clamp(32px, 5vw, 72px);
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 42px;
        }

        .about-copy {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .section-kicker {
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .about-wrapper h2 {
            font-size: clamp(2rem, 4.6vw, 4.8rem);
            line-height: 0.98;
            font-weight: 700;
            max-width: 860px;
        }

        .about-copy > p:last-child {
            max-width: 720px;
            color: #a5a5a5;
            font-size: clamp(1rem, 1.45vw, 1.25rem);
            line-height: 1.65;
        }

        .about-media {
            margin: 0;
            aspect-ratio: 4 / 5;
            min-height: 460px;
            overflow: hidden;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.03);
        }

        .about-media img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center;
        }


.video-container {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#expandVideo {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    display: block;
}


        /* ==========================================================================
           BANNER HERO: CONFIGURAÇÕES ROTATIVAS (CARROSSEL)
           ========================================================================== */
        .content-spacer {
            padding-top: 110px; 
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative; 
            overflow: hidden;
        }

        .content-spacer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%; z-index: -1; 
            background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 60px 100%;
            mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
            -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
            opacity: 0;
            animation: surgirLinhasFundo 3s ease-in-out 4s forwards;
        }

        @keyframes surgirLinhasFundo { to { opacity: 1; } }

        /* Configurações básicas para transição de fundo */
/* Container pai do banner */
#projetos::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* O 0.4 controla o escurecimento. 0.0 é totalmente transparente, 1.0 é preto total */
    background: rgba(0, 0, 0, 0.4) !important; 
    z-index: 0;
    pointer-events: none;
}
.slide-1-bg { background-image: url('bg02.webp'); }
.slide-2-bg { background-image: url('bg01.webp'); }

.banner-text {
    background: rgba(0, 0, 0, 0.54);
    padding: clamp(24px, 3vw, 54px);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    max-width: min(760px, 72vw);
    margin-left: auto;
    margin-right: clamp(32px, 8vw, 140px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: translate3d(calc(var(--hero-x) * -0.25), calc(var(--hero-y) * -0.25), 0);
    transition: transform 0.18s ease-out;
    will-change: transform;
}

@media (max-width: 768px) {
    .banner-text {
        padding: 22px;
        max-width: 90%;
        margin: 0 auto;
    }
}

.slider-wrapper {
    --hero-x: 0px;
    --hero-y: 0px;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    isolation: isolate;
    background-size: 85% auto; /* 85% da largura, altura proporcional */
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0b0b0b;
}

.slider-wrapper::before,
.slider-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.slider-wrapper::before {
    background:
        radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.38) 0 1px, transparent 2px),
        radial-gradient(circle at 42% 68%, rgba(255, 255, 255, 0.28) 0 1px, transparent 2px),
        radial-gradient(circle at 66% 34%, rgba(255, 255, 255, 0.34) 0 1px, transparent 2px),
        radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.22) 0 1px, transparent 2px);
    background-size: 340px 340px, 420px 420px, 520px 520px, 460px 460px;
    opacity: 0.28;
    transform: translate3d(calc(var(--hero-x) * -0.45), calc(var(--hero-y) * -0.45), 0);
    animation: heroParticlesFloat 18s linear infinite;
}

.slider-wrapper::after {
    background:
        linear-gradient(110deg, transparent 10%, rgba(255, 255, 255, 0.12) 46%, transparent 62%),
        radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.18), transparent 24%),
        radial-gradient(circle at 26% 64%, rgba(255, 255, 255, 0.10), transparent 28%);
    mix-blend-mode: screen;
    opacity: 0.5;
    transform: translate3d(calc(var(--hero-x) * 0.35), calc(var(--hero-y) * 0.35), 0);
    animation: heroLightSweep 7s ease-in-out infinite alternate;
}

@keyframes heroParticlesFloat {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 340px -340px, -420px 420px, 520px 520px, -460px -460px; }
}

@keyframes heroLightSweep {
    0% { opacity: 0.22; background-position: -34vw 0, center, center; }
    45% { opacity: 0.54; }
    100% { opacity: 0.34; background-position: 34vw 0, center, center; }
}

@media (prefers-reduced-motion: reduce) {
    .slider-wrapper::before,
    .slider-wrapper::after,
    .banner-wrapper::before,
    .banner-wrapper::after {
        animation: none;
        transform: none;
    }

    .banner-text {
        transform: none;
        transition: none;
    }
}



        .banner-wrapper {
            width: 100%; height: 100%;
            display: grid; grid-template-columns: 1fr; gap: 0; align-items: center;
            position: absolute; top: 0; left: 0;
            opacity: 0; visibility: hidden;
            transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
            z-index: 1;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .banner-wrapper.active { opacity: 1; visibility: visible; z-index: 2; }

        .banner-wrapper::before {
            content: '';
            position: absolute;
            inset: -7%;
            z-index: -1;
            background-image: inherit;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.9;
            transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.08);
            animation: heroBackgroundDrift 15s ease-in-out infinite alternate;
            will-change: transform;
        }

        .banner-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background:
                radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.30) 0 1px, transparent 2px),
                radial-gradient(circle at 42% 68%, rgba(255, 255, 255, 0.22) 0 1px, transparent 2px),
                radial-gradient(circle at 66% 34%, rgba(255, 255, 255, 0.26) 0 1px, transparent 2px),
                radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.16) 0 1px, transparent 2px),
                radial-gradient(circle at 50% 48%, transparent 0 26%, rgba(11, 11, 11, 0.32) 62%, rgba(11, 11, 11, 0.72) 100%),
                linear-gradient(90deg, rgba(11, 11, 11, 0.66), transparent 34%, rgba(11, 11, 11, 0.26));
            background-size: 340px 340px, 420px 420px, 520px 520px, 460px 460px, auto, auto;
            transform: translate3d(calc(var(--hero-x) * -0.18), calc(var(--hero-y) * -0.18), 0);
            animation: heroParticlesFloat 18s linear infinite;
        }

        .banner-wrapper > * {
            position: relative;
            z-index: 2;
        }

        @keyframes heroBackgroundDrift {
            0% {
                transform: translate3d(calc(var(--hero-x) - 18px), calc(var(--hero-y) - 8px), 0) scale(1.08);
                filter: saturate(0.9) brightness(0.88);
            }
            100% {
                transform: translate3d(calc(var(--hero-x) + 18px), calc(var(--hero-y) + 10px), 0) scale(1.14);
                filter: saturate(1.08) brightness(0.98);
            }
        }

        .banner-visual { display: none; }
        .banner-svg { width: 100%; max-width: 380px; overflow: visible; }

        /* ELEMENTO VETORIAL NO SLIDE 1 */
        .svg-novo-anim {
            stroke: #ffffff;
            stroke-width: 3px;
            stroke-dasharray: 1800;
            stroke-dashoffset: 1800;
            fill: transparent;
            animation: desenharVetorBanner 2.2s cubic-bezier(0.25, 1, 0.5, 1) 4.2s forwards;
        }

        @keyframes desenharVetorBanner {
            0% { stroke-dashoffset: 1800; fill: transparent; }
            70% { stroke-dashoffset: 0; fill: transparent; }
            100% { stroke-dashoffset: 0; fill: rgba(255, 255, 255, 0.03); filter: url(#bannerGlow); }
        }

        /* ELEMENTO VETORIAL NO SLIDE 2 */
        .svg-novo-pulse {
            fill: rgba(255, 255, 255, 0.02);
            stroke: #ffffff;
            stroke-width: 2px;
            filter: url(#bannerGlow);
            animation: pulsarVetorBanner 3.5s ease-in-out infinite alternate;
            transform-origin: 960px 540px; 
        }

        @keyframes pulsarVetorBanner {
            0% { transform: scale(0.95); opacity: 0.6; filter: drop-shadow(0 0 4px rgba(255,255,255,0.2)); }
            100% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 15px rgba(255,255,255,0.6)); }
        }

        /* TEXTOS */
        .banner-text { display: flex; flex-direction: column; justify-content: center; }
        .linha-texto { font-size: clamp(1.6rem, 3.2vw, 2.8rem); font-weight: 700; line-height: 1.25; color: #ffffff; overflow: hidden; margin: 0 0 8px; }
        .linha-texto span {
            opacity: 0;
            filter: blur(14px);
            transform: translateY(115%);
            transition:
                opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
        }
        
        .banner-wrapper:nth-child(1) .linha-texto span {
            display: block;
            animation: subirTexto 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
            background: linear-gradient(to right, #ffffff, #a5a5a5); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .banner-wrapper:nth-child(1) .linha-texto:nth-child(1) span { animation-delay: 4.6s; }
        .banner-wrapper:nth-child(1) .linha-texto:nth-child(2) span { animation-delay: 4.9s; }
        .banner-wrapper:nth-child(1) .linha-texto:nth-child(3) span { animation-delay: 5.2s; }

        .banner-wrapper.active .linha-texto span {
            opacity: 1;
            filter: blur(0);
            transform: translateY(0) !important;
            display: block;
            background: linear-gradient(to right, #ffffff, #a5a5a5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .banner-wrapper.active .linha-texto:nth-child(1) span { transition-delay: 0.12s; }
        .banner-wrapper.active .linha-texto:nth-child(2) span { transition-delay: 0.24s; }
        .banner-wrapper.active .linha-texto:nth-child(3) span { transition-delay: 0.36s; }
        @keyframes subirTexto { to { opacity: 1; filter: blur(0); transform: translateY(0); } }

        .slider-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; opacity: 0; animation: surgirLinhasFundo 1s ease-in 5s forwards; }
        .dot { width: 20px; height: 2px; background-color: rgba(255, 255, 255, 0.2); cursor: pointer; transition: all 0.4s ease; }
        .dot.active { background-color: #ffffff; width: 40px; }

        /* HERO FULLSCREEN COM PARTICULAS */
        .content-spacer {
            min-height: 100vh;
            padding-top: 0;
            align-items: stretch;
            overflow: hidden;
        }

        .content-spacer::before {
            z-index: 1;
            opacity: 0.36;
            mask-image: linear-gradient(90deg, black 0%, transparent 72%);
        }

        .slider-wrapper {
            background-color: #061116;
        }

        .slider-wrapper::before {
            background:
                radial-gradient(circle, rgba(40, 184, 244, 0.24) 0 6px, transparent 7px),
                radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 4px, transparent 5px),
                radial-gradient(circle, rgba(30, 121, 188, 0.24) 0 10px, transparent 11px);
            background-size: 220px 220px, 310px 310px, 440px 440px;
            opacity: 0.46;
            transform: translate3d(calc(var(--hero-x) * -0.4), calc(var(--hero-y) * -0.4), 0);
            animation: heroDotField 14s ease-in-out infinite alternate;
        }

        .slider-wrapper::after {
            background:
                radial-gradient(circle at 72% 36%, rgba(255, 154, 88, 0.24), transparent 22%),
                radial-gradient(circle at 30% 62%, rgba(45, 210, 230, 0.14), transparent 28%),
                linear-gradient(105deg, transparent 12%, rgba(255, 255, 255, 0.11) 48%, transparent 64%);
            opacity: 0.62;
            animation: heroLightSweep 7s ease-in-out infinite alternate;
        }

        .banner-wrapper {
            min-height: 100vh;
            padding: 110px clamp(24px, 7vw, 110px) 72px;
            background-position: center right;
        }

        .banner-wrapper::before {
            inset: -5%;
            opacity: 1;
            background-position: center right;
            transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.06);
        }

        .banner-wrapper::after {
            background:
                radial-gradient(circle at 16% 24%, rgba(16, 166, 235, 0.22) 0 16px, transparent 18px),
                radial-gradient(circle at 30% 72%, rgba(88, 230, 241, 0.15) 0 24px, transparent 26px),
                radial-gradient(circle at 58% 18%, rgba(255, 181, 111, 0.10) 0 12px, transparent 14px),
                linear-gradient(90deg, rgba(5, 9, 13, 0.92) 0%, rgba(5, 9, 13, 0.76) 36%, rgba(5, 9, 13, 0.32) 62%, rgba(5, 9, 13, 0.18) 100%),
                linear-gradient(0deg, rgba(5, 9, 13, 0.72), transparent 34%, rgba(5, 9, 13, 0.42));
            background-size: 360px 360px, 480px 480px, 620px 620px, auto, auto;
            opacity: 1;
            transform: translate3d(calc(var(--hero-x) * -0.18), calc(var(--hero-y) * -0.18), 0);
            animation: heroFloatingDots 10s ease-in-out infinite alternate;
        }

        .hero-particles {
            position: absolute;
            inset: 0;
            z-index: 3;
            pointer-events: none;
            overflow: hidden;
        }

        .hero-particles span {
            position: absolute;
            left: var(--x);
            top: var(--y);
            width: var(--size);
            height: var(--size);
            border-radius: 999px;
            background: #16acee;
            opacity: var(--alpha);
            box-shadow: 0 0 28px rgba(22, 172, 238, 0.28);
            transform: translate3d(0, 0, 0) scale(0.72);
            animation: heroParticleDrift var(--duration) ease-in-out var(--delay) infinite alternate;
            will-change: transform, opacity;
        }

        .banner-text {
            width: min(720px, 92vw);
            max-width: 720px;
            min-height: auto;
            justify-self: start;
            align-self: center;
            gap: 0;
            padding: 0;
            margin-top: 28px;
            margin-left: 0;
            background: transparent;
            border: 0;
            border-radius: 0;
            box-shadow: none;
            backdrop-filter: none;
        }

        .hero-kicker {
            margin: 0 0 18px;
            color: #66e6f2;
            font-size: clamp(0.78rem, 1vw, 0.95rem);
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(18px);
        }

        .banner-wrapper.active .hero-kicker {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.72s ease 0.06s, transform 0.72s ease 0.06s;
        }

        .linha-texto {
            font-size: clamp(2.05rem, 4.8vw, 4.9rem);
            line-height: 1.05;
            letter-spacing: 0;
            margin: 0 0 10px;
        }

        .hero-description {
            max-width: 700px;
            margin: 22px 0 0;
            color: rgba(255, 255, 255, 0.84);
            font-size: clamp(1rem, 1.28vw, 1.16rem);
            line-height: 1.62;
            opacity: 0;
            transform: translateY(20px);
        }

        .banner-wrapper.active .hero-description {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.8s ease 0.42s, transform 0.8s ease 0.42s;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 34px;
            opacity: 0;
            transform: translateY(20px);
        }

        .banner-wrapper.active .hero-actions {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.8s ease 0.56s, transform 0.8s ease 0.56s;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 13px 22px;
            border-radius: 999px;
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
        }

        .hero-btn:hover {
            transform: translateY(-2px);
        }

        .hero-btn-primary {
            background: #ffffff;
            color: #071116;
            border: 1px solid #ffffff;
        }

        .hero-btn-secondary {
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.34);
            background: rgba(255, 255, 255, 0.05);
        }

        .slider-dots {
            bottom: 38px;
            left: clamp(24px, 7vw, 110px);
            transform: none;
            gap: 10px;
        }

        .dot {
            width: 34px;
            height: 4px;
            border-radius: 999px;
            background-color: rgba(255, 255, 255, 0.24);
        }

        .dot.active {
            width: 62px;
            background-color: #66e6f2;
            box-shadow: 0 0 22px rgba(102, 230, 242, 0.48);
        }

        @keyframes heroDotField {
            0% { background-position: 0 0, 80px 20px, 140px 60px; opacity: 0.22; }
            38% { background-position: -80px 120px, 190px -60px, 40px 210px; opacity: 0.52; }
            71% { background-position: 130px -80px, -120px 180px, 310px -170px; opacity: 0.34; }
            100% { background-position: 220px 160px, -220px -140px, 480px 260px; opacity: 0.48; }
        }

        @keyframes heroFloatingDots {
            0% {
                background-position: 0 0, 80px 40px, 140px 90px, 0 0, 0 0;
            }
            45% {
                background-position: -160px 110px, 220px -180px, -120px 280px, 0 0, 0 0;
            }
            100% {
                background-position: 260px -180px, -190px 240px, 380px -220px, 0 0, 0 0;
            }
        }

        @keyframes heroParticleDrift {
            0% {
                opacity: calc(var(--alpha) * 0.35);
                transform: translate3d(0, 0, 0) scale(0.55);
            }
            42% {
                opacity: var(--alpha);
                transform: translate3d(calc(var(--tx) * -0.45), calc(var(--ty) * 0.75), 0) scale(1.08);
            }
            100% {
                opacity: calc(var(--alpha) * 0.62);
                transform: translate3d(var(--tx), var(--ty), 0) scale(0.82);
            }
        }

        /* ==========================================================================
           SEÇÃO DE SERVIÇOS DO PROJETO COM ACORDEÃO (01 ATÉ 09)
           ========================================================================== */
        .ServicesCta_services-cta__4e_KJ {
            width: 100%;
            max-width: 1400px;
            margin: 100px auto;
            padding: 0 24px;
            color: #ffffff;
        }

        .grid-gutter {
            margin-bottom: 50px;
        }

        .ServicesCta_title__IV3bt {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1;
            margin-bottom: 30px;
            letter-spacing: -2px;
            white-space: nowrap; 
        }

        .ServicesCta_description__BNvIx {
            font-size: clamp(1rem, 1.5vw, 1.3rem);
            line-height: 1.6;
            color: #a5a5a5;
            max-width: 900px;
        }

        .services-keywords {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            max-width: 1040px;
            margin: 30px 0 24px;
        }

        .services-keywords span {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 7px 12px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.82rem;
            line-height: 1.2;
            white-space: nowrap;
        }

        .services-ecosystem {
            max-width: 760px;
            margin: 0;
            color: #ffffff;
            font-size: clamp(1.05rem, 1.7vw, 1.45rem);
            line-height: 1.45;
            font-weight: 600;
        }

        /* Estilos do Acordeão de Serviços */
        .Accordion_accordion__SrwSn {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
        }

        .AccordionItem_header__9uIJZ {
            width: 100%;
            background: none;
            border: none;
            color: #ffffff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 0;
            cursor: pointer;
            text-align: left;
            position: relative;
        }

        .AccordionItem_index__mHSya {
            font-size: 1rem;
            opacity: 0.4;
            margin-right: 20px;
            font-weight: 400;
        }

        .AccordionItem_title__zrWEF {
            font-size: clamp(1.4rem, 2.5vw, 2.2rem);
            font-weight: 600;
            display: inline-block;
        }

        /* Ícone Mais/Menos */
        .AccordionItem_icon__d68Wc {
            position: relative;
            width: 24px;
            height: 24px;
        }

        .AccordionItem_line__8_OXD {
            position: absolute;
            background-color: #ffffff;
            transition: transform 0.3s ease;
        }

        .AccordionItem_line__8_OXD:nth-child(1) { top: 11px; left: 0; width: 100%; height: 2px; }
        .AccordionItem_line__8_OXD:nth-child(2) { top: 0; left: 11px; width: 2px; height: 100%; }

        /* Estado Aberto do Ícone */
        .item-aberto .AccordionItem_line__8_OXD:nth-child(2) {
            transform: rotate(90deg);
            opacity: 0;
        }

        /* Conteúdo Interno Expandido */
        .AccordionItem_content__BywVz {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .AccordionItem_ctaContainer__N3ieo {
            padding: 10px 0 40px 40px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .AccordionItem_longDescription__qI6jY {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #cccccc;
            max-width: 800px;
        }

        /* Botão Primário Estilizado */
        .PrimaryButton_primary-button__5ecJs {
            display: inline-flex;
            align-self: flex-start;
            color: #0b0b0b;
            background-color: #ffffff;
            padding: 12px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .PrimaryButton_primary-button__5ecJs:hover {
            transform: translateY(-2px);
        }

        .AccordionItem_list-line__M2wdC {
            display: block;
            width: 100%;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

        /* ==========================================================================
           ENTRADAS VISUAIS DAS SECOES
           ========================================================================== */
        body.reveal-ready .about-copy,
        body.reveal-ready .about-media,
        body.reveal-ready .ServicesCta_title__IV3bt,
        body.reveal-ready .ServicesCta_description__BNvIx,
        body.reveal-ready .services-keywords,
        body.reveal-ready .services-ecosystem,
        body.reveal-ready .ServicesCta_accordion__OYLSV,
        body.reveal-ready .CaseCarousel_titleContainer__i_Z9r {
            opacity: 0;
            transform: translateY(42px);
            transition:
                opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: opacity, transform;
        }

        body.reveal-ready .about-media {
            transform: translateY(42px) scale(0.96);
            filter: saturate(0.7) brightness(0.82);
        }

        body.reveal-ready .section-visible .about-copy,
        body.reveal-ready .section-visible .about-media,
        body.reveal-ready .section-visible .ServicesCta_title__IV3bt,
        body.reveal-ready .section-visible .ServicesCta_description__BNvIx,
        body.reveal-ready .section-visible .services-keywords,
        body.reveal-ready .section-visible .services-ecosystem,
        body.reveal-ready .section-visible .ServicesCta_accordion__OYLSV,
        body.reveal-ready .section-visible .CaseCarousel_titleContainer__i_Z9r {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: none;
        }

        body.reveal-ready .section-visible .about-media {
            transition-delay: 0.16s;
        }

        body.reveal-ready .section-visible .ServicesCta_description__BNvIx {
            transition-delay: 0.12s;
        }

        body.reveal-ready .section-visible .services-keywords {
            transition-delay: 0.18s;
        }

        body.reveal-ready .section-visible .services-ecosystem {
            transition-delay: 0.22s;
        }

        body.reveal-ready .section-visible .ServicesCta_accordion__OYLSV {
            transition-delay: 0.28s;
        }

        body.reveal-ready .acordeon-item {
            opacity: 0;
            transform: translateX(-24px);
            transition:
                opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
        }

        body.reveal-ready .section-visible .acordeon-item {
            opacity: 1;
            transform: translateX(0);
        }

        body.reveal-ready .section-visible .acordeon-item:nth-child(1) { transition-delay: 0.28s; }
        body.reveal-ready .section-visible .acordeon-item:nth-child(2) { transition-delay: 0.34s; }
        body.reveal-ready .section-visible .acordeon-item:nth-child(3) { transition-delay: 0.40s; }
        body.reveal-ready .section-visible .acordeon-item:nth-child(4) { transition-delay: 0.46s; }
        body.reveal-ready .section-visible .acordeon-item:nth-child(5) { transition-delay: 0.52s; }
        body.reveal-ready .section-visible .acordeon-item:nth-child(6) { transition-delay: 0.58s; }
        body.reveal-ready .section-visible .acordeon-item:nth-child(7) { transition-delay: 0.64s; }
        body.reveal-ready .section-visible .acordeon-item:nth-child(8) { transition-delay: 0.70s; }
        body.reveal-ready .section-visible .acordeon-item:nth-child(9) { transition-delay: 0.76s; }

        body.reveal-ready .section-visible .CaseCard_link__f_OED.visible {
            transition-delay: 0.16s;
        }

        @media (prefers-reduced-motion: reduce) {
            body.reveal-ready .about-copy,
            body.reveal-ready .about-media,
            body.reveal-ready .ServicesCta_title__IV3bt,
            body.reveal-ready .ServicesCta_description__BNvIx,
            body.reveal-ready .services-keywords,
            body.reveal-ready .services-ecosystem,
            body.reveal-ready .ServicesCta_accordion__OYLSV,
            body.reveal-ready .CaseCarousel_titleContainer__i_Z9r,
            body.reveal-ready .acordeon-item {
                opacity: 1;
                transform: none;
                filter: none;
                transition: none;
            }
        }

        /* ==========================================================================
           SEÇÃO DE CASES / PORTFÓLIO (SLIDER CARROSSEL DRAGGABLE)
           ========================================================================== */
        /* Força o fundo branco nas seções desejadas */
/* Forçar largura total */
#videoSection, #projetos {
    background-color: transparent !important; /* Remove o fundo sólido forçado */
    position: relative;
    z-index: 2; /* Garante que fique acima do body */
    width: 100vw;
}

/* Ajuste do container para ocupar a tela */
.CaseCarousel_image-slider-draggable__uR_5F {
    width: 100vw;
    padding: 100px 5%;
}
        .CaseCarousel_titleContainer__i_Z9r {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
        }

        .CaseCarousel_title__Z_owz {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1;
            letter-spacing: -2px;
            color: #ffffff;
            white-space: nowrap;
        }

        .CaseCarousel_buttonsContainer__QUQB5 {
            display: flex;
            gap: 15px;
        }

        .CaseCarousel_arrowButton__SSDVu {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .CaseCarousel_arrowButton__SSDVu:hover:not([disabled]) {
            background: #ffffff;
            border-color: #ffffff;
        }

        .CaseCarousel_arrowButton__SSDVu:hover:not([disabled]) svg path {
            fill: #0b0b0b;
        }

        .CaseCarousel_arrowButton__SSDVu[disabled] {
            opacity: 0.15;
            cursor: not-allowed;
        }

        .CaseCarousel_arrowButton__SSDVu svg {
            width: 24px;
            height: 24px;
            transition: fill 0.3s ease;
        }

        .CaseCarousel_draggable-bounds__9_vuz {
            width: 100%;
            overflow: visible;
        }

        /* Container que controla a largura dos cards */
.CaseCarousel_slider__3bSDN {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth; /* Isso garante o movimento suave */
    scrollbar-width: none;
    transition: all 0.5s ease;
}

        .CaseCarousel_slider__3bSDN::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }

        /* ESTILOS DOS CARDS INDIVIDUAIS DO PORTFÓLIO */
        /* Força cada card a ocupar 25% da largura menos o gap, exibindo 4 por vez */
.CaseCard_link__f_OED {
    flex: 0 0 clamp(220px, 22vw, 330px);
    scroll-snap-align: start;
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.CaseCard_link__f_OED.visible {
    opacity: 1;
    transform: translateY(0);
}
        .CaseCard_card__LTQL6 {
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
        }

        .CaseCard_imageContainer__cRfYv {
            width: 100%;
            aspect-ratio: 9 / 16;
            height: auto;
            overflow: hidden;
            border-radius: 8px;
            position: relative;
            background-color: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: border-color 0.4s ease;
        }

        .Image_image-holder__T2zw1 {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .CaseCard_imageContainer__cRfYv img {
            transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .CaseCard_link__f_OED:hover .CaseCard_imageContainer__cRfYv img {
            transform: scale(1.05);
        }

        .CaseCard_link__f_OED:hover .CaseCard_imageContainer__cRfYv {
            border-color: rgba(255, 255, 255, 0.15);
        }

        .CaseCard_projectInfo__YU7_0 {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 0 4px;
        }

        .CaseCard_textContentWrapper__1z7Zz {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .CaseCard_textContent__9eMHH p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .CaseCard_title__8Nkt6 {
            font-size: 1.6rem;
            font-weight: 600;
            line-height: 1.2;
            color: #ffffff;
        }

        .GrowingArrowButton_button__O_wb_ {
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
        }

        .GrowingArrowButton_button__O_wb_ svg {
            width: 24px;
            height: 24px;
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .CaseCard_link__f_OED:hover svg {
            transform: translateX(6px);
        }

        /* MEDIA QUERIES (RESPONSIVIDADE MOBILE) */
        @media (max-width: 768px) {
            /* EXIBIÇÃO DO MENU MOBILE */
            .nav-menu {
                display: none; /* Esconde menu tradicional desktop */
            }

            .menu-toggle {
                display: flex; /* Exibe o botão hamburguer no mobile */
            }

            /* ANIMAÇÃO TRANSFORMAÇÃO DO HAMBURGUER EM "X" */
            .menu-toggle.open span:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            .menu-toggle.open span:nth-child(2) {
                opacity: 0;
                transform: translateX(-15px);
            }
            .menu-toggle.open span:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            /* AJUSTES BANNER & CARROSSEL */
            .content-spacer { min-height: 100vh; padding-top: 0; }
            .banner-wrapper { grid-template-columns: 1fr; text-align: left; gap: 20px; display: none; padding: 112px 20px 74px; background-position: 66% center; }
            .banner-wrapper.active { display: grid; }
            .banner-svg { max-width: 200px; }
            .banner-text { max-width: 100%; margin: 0; padding: 0; }
            .linha-texto { font-size: clamp(2.1rem, 14vw, 4.8rem); }
            .hero-actions { gap: 10px; }
            .hero-btn { width: 100%; min-height: 46px; padding: 12px 16px; }
            .slider-dots { bottom: 24px; left: 20px; }
            .services-keywords span { white-space: normal; }
            .AccordionItem_ctaContainer__N3ieo { padding-left: 0; }
            .ServicesCta_title__IV3bt { white-space: normal; } 
            .about-section { padding: 80px 20px 10px; }
            .about-wrapper { grid-template-columns: 1fr; gap: 28px; }
            .about-media { min-height: 0; aspect-ratio: 16 / 10; }
            .about-wrapper h2 { line-height: 1.05; }
            
            /* Ajustes Mobile Cases */
            .CaseCard_link__f_OED { flex: 0 0 min(78vw, 330px); }
            .CaseCarousel_slider__3bSDN { gap: 20px; }
            .CaseCarousel_title__Z_owz { white-space: normal; }
        }
     
        /* ==========================================================================
           SEÇÃO FOOTER
           ========================================================================== */
  
    .footer-section {
        width: 100%;
        padding: 80px 24px;
        background-color: #0b0b0b;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        color: #ffffff;
    }

    .footer-wrapper {
        max-width: 1400px;
        margin: 0 auto;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .footer-brand p {
        color: rgba(255, 255, 255, 0.4);
    }

    .footer-links {
        display: flex;
        gap: 30px;
        justify-content: flex-end;
        align-items: center;
    }

    .footer-links a {
        color: #ffffff;
        text-decoration: none;
        font-size: 0.9rem;
        transition: opacity 0.3s ease;
    }

    .footer-links a:hover {
        opacity: 0.6;
    }

    .footer-bottom {
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 40px;
        color: rgba(255, 255, 255, 0.3);
        font-size: 0.8rem;
    }

    .whatsapp-float {
        position: fixed;
        right: 22px;
        bottom: 22px;
        z-index: 120;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #25d366;
        color: #ffffff;
        text-decoration: none;
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), 0 0 0 0 rgba(37, 211, 102, 0.42);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        animation: whatsappPulse 2.4s ease-in-out infinite;
    }

    .whatsapp-float:hover {
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42), 0 0 0 10px rgba(37, 211, 102, 0.08);
    }

    .whatsapp-float-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #ffffff;
        font-size: 1rem;
        font-weight: 900;
        font-family: Arial, sans-serif;
        line-height: 1;
    }

    @keyframes whatsappPulse {
        0%, 100% {
            box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), 0 0 0 0 rgba(37, 211, 102, 0.34);
        }
        50% {
            box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), 0 0 0 12px rgba(37, 211, 102, 0);
        }
    }

    /* Ajuste para mobile */
    /* Ajuste para mobile (mantém 1 ou 2 itens para não ficar muito pequeno) */
@media (max-width: 1024px) {
    .CaseCard_link__f_OED {
        flex: 0 0 clamp(220px, 38vw, 320px);
    }
}

@media (max-width: 600px) {
    .CaseCard_link__f_OED {
        flex: 0 0 min(82vw, 340px);
    }

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

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .content-spacer {
        min-height: 100svh;
    }

    .banner-wrapper {
        min-height: 100svh;
        align-items: center;
        padding: 98px 18px 86px;
        background-position: 68% center;
    }

    .banner-wrapper::after {
        background:
            linear-gradient(90deg, rgba(5, 9, 13, 0.94) 0%, rgba(5, 9, 13, 0.82) 55%, rgba(5, 9, 13, 0.42) 100%),
            linear-gradient(0deg, rgba(5, 9, 13, 0.82), transparent 42%, rgba(5, 9, 13, 0.48));
    }

    .banner-text {
        width: min(100%, 430px);
        max-width: 430px;
        margin: 0;
    }

    .hero-kicker {
        margin-bottom: 10px;
        font-size: 0.68rem;
        letter-spacing: 0.14em;
    }

    .linha-texto {
        font-size: clamp(1.72rem, 8.4vw, 2.75rem);
        line-height: 1.1;
        margin-bottom: 0;
    }

    .hero-description {
        margin-top: 14px;
        font-size: clamp(0.88rem, 3.8vw, 1rem);
        line-height: 1.45;
        max-width: 95%;
    }

    .hero-actions {
        margin-top: 20px;
        gap: 9px;
    }

    .hero-btn {
        width: auto;
        min-height: 42px;
        padding: 10px 14px;
        font-size: 0.72rem;
    }

    .slider-dots {
        bottom: 20px;
        left: 18px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float-icon {
        width: 29px;
        height: 29px;
        font-size: 0.9rem;
    }
}



