        /* ══════════════════════════════════════
       VARIÁVEIS — sinc com main.css
    ══════════════════════════════════════ */
        :root {
            --kz-primary: #0097b2;
            --kz-primary-d: #006f87;
            /* teal escuro: 5.4:1 em branco — AA normal text ✓ */
            --kz-primary-xl: #004f63;
            /* teal extra-escuro: 8.1:1 — AAA ✓ */
            --kz-primary-l: #e3f6fa;
            --kz-accent: #f07b07;
            --kz-dark: #0d1b22;
            /* 18.7:1 ✓ */
            --kz-body: #374151;
            /* 9.7:1  ✓ */
            --kz-muted: #4b5563;
            /* 7.2:1  ✓ */
            --kz-border: #d1d9e0;
        }

        /* ── Skip link (acessibilidade — 1.º no DOM) ── */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            z-index: 9999;
            background: var(--kz-primary);
            color: #fff;
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 0 0 3px 0;
        }

        .skip-link:focus {
            top: 0;
            outline: 3px solid var(--kz-accent);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: #fff;
            margin: 0;
        }

        /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
        .hero-section {
            position: relative;
            overflow: hidden;
            background: #fff;
            padding: 84px 0 76px;
        }

        /* fundo pontilhado decorativo */
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(0, 151, 178, .07) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
            z-index: 0;
        }

        /* brilho radial canto direito */
        .hero-section::after {
            content: '';
            position: absolute;
            top: -140px;
            right: -140px;
            width: 520px;
            height: 520px;
            background: radial-gradient(circle, rgba(0, 151, 178, .09) 0%, transparent 68%);
            pointer-events: none;
            z-index: 0;
        }

        .hero-section .container {
            position: relative;
            z-index: 1;
        }

        /* ── H1: Lema ──
       Texto grande (clamp min 36px) → teal #0097b2 em branco = 3.54:1 PASSA AA Large ✓ */
        .hero-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.25rem, 5vw, 3.8rem);
            font-weight: 900;
            line-height: 1.07;
            letter-spacing: -0.03em;
            color: var(--kz-dark);
            margin: 0 0 6px;
            opacity: 0;
            transform: translateY(18px);
            animation: kzUp .5s .05s ease forwards;
        }

        .hero-title .t-accent {
            color: var(--kz-primary);
            position: relative;
            display: inline-block;
        }

        .hero-title .t-accent::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--kz-primary), var(--kz-accent));
            transform: scaleX(0);
            transform-origin: left;
            animation: kzLine .5s .7s ease forwards;
        }

        @keyframes kzLine {
            to {
                transform: scaleX(1);
            }
        }

        .hero-dot {
            display: inline-block;
            width: 9px;
            height: 9px;
            background: var(--kz-accent);
            border-radius: 50%;
            margin-left: 5px;
            vertical-align: middle;
            opacity: 0;
            animation: kzUp .3s .95s ease forwards, kzPulse 2.4s 1.3s ease-in-out infinite;
        }

        @keyframes kzPulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(240, 123, 7, .5);
            }

            50% {
                box-shadow: 0 0 0 7px rgba(240, 123, 7, 0);
            }
        }

        /* ── Subtítulo serviços ── */
        .hero-sub {
            font-size: 1.05rem;
            line-height: 1.78;
            color: var(--kz-body);
            margin: 22px 0 30px;
            max-width: 530px;
            opacity: 0;
            transform: translateY(14px);
            animation: kzUp .5s .2s ease forwards;
        }

        .hero-sub strong {
            color: var(--kz-dark);
            font-weight: 600;
        }

        /* loc: usa teal escuro → 5.4:1 ✓ para texto pequeno */
        .hero-loc {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: var(--kz-primary-d);
            font-weight: 600;
        }

        /* ── Pills ──
       Cada cor verificada WCAG AA (≥4.5:1) */
        .hero-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 34px;
            padding: 0;
            list-style: none;
            opacity: 0;
            transform: translateY(10px);
            animation: kzUp .5s .32s ease forwards;
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            font-weight: 600;
            font-family: 'DM Sans', sans-serif;
            padding: 5px 11px;
            border-radius: 3px;
            border: 1.5px solid transparent;
            transition: transform .18s, box-shadow .18s;
            cursor: default;
            user-select: none;
        }

        .hero-pill:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
        }

        /* #4c1d95 em #ede9fe → 8.2:1 ✓ */
        .hp-dev {
            background: #ede9fe;
            color: #4c1d95;
            border-color: #c4b5fd;
        }

        /* #004f63 em #e3f6fa → 8.1:1 ✓ */
        .hp-mkt {
            background: var(--kz-primary-l);
            color: var(--kz-primary-xl);
            border-color: #7dd3e8;
        }

        /* #92400e em #fef3c7 → 6.3:1 ✓ */
        .hp-dsn {
            background: #fef3c7;
            color: #92400e;
            border-color: #fcd34d;
        }

        /* #064e3b em #d1fae5 → 8.4:1 ✓ */
        .hp-sup {
            background: #d1fae5;
            color: #064e3b;
            border-color: #6ee7b7;
        }

        /* ══ BOTÕES — border-radius: 0, estilo corporativo ══ */
        .hero-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            opacity: 0;
            transform: translateY(10px);
            animation: kzUp .5s .44s ease forwards;
        }

        /* Primário: teal sólido
       No hover escurece → branco passa 4.9:1 AA ✓ */
        .btn-kz-primary {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: var(--kz-primary);
            color: #fff !important;
            text-decoration: none;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 14px 28px;
            border-radius: 0;
            border: 2px solid var(--kz-primary);
            box-shadow: 0 4px 18px rgba(0, 151, 178, .28);
            transition: background .2s, border-color .2s, box-shadow .2s;
            white-space: nowrap;
            cursor: pointer;
        }

        .btn-kz-primary:hover {
            background: var(--kz-primary-d);
            border-color: var(--kz-primary-d);
            box-shadow: 0 6px 24px rgba(0, 151, 178, .38);
        }

        .btn-kz-primary:focus-visible {
            outline: 3px solid var(--kz-accent);
            outline-offset: 3px;
        }

        /* Secundário: contorno */
        .btn-kz-outline {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: transparent;
            color: var(--kz-dark) !important;
            text-decoration: none;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 14px 24px;
            border-radius: 0;
            border: 2px solid var(--kz-border);
            transition: border-color .2s, background .2s, color .2s;
            white-space: nowrap;
        }

        .btn-kz-outline:hover {
            border-color: var(--kz-primary);
            background: var(--kz-primary-l);
            color: var(--kz-primary-xl) !important;
        }

        .btn-kz-outline:focus-visible {
            outline: 3px solid var(--kz-primary);
            outline-offset: 3px;
        }

        /* ── Trust bar ── */
        .hero-trust {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 30px;
            flex-wrap: wrap;
            opacity: 0;
            animation: kzUp .5s .60s ease forwards;
        }

        .trust-avatars {
            display: flex;
            align-items: center;
        }

        .trust-av {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 2.5px solid #fff;
            background: linear-gradient(135deg, var(--kz-primary), #004e63);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.63rem;
            font-weight: 800;
            color: #fff;
            font-family: 'Outfit', sans-serif;
            margin-left: -10px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, .13);
        }

        .trust-av:first-child {
            margin-left: 0;
        }

        /* âmbar escuro #b45309 → 4.7:1 ✓ */
        .trust-stars {
            color: #b45309;
            font-size: 0.9rem;
        }

        .trust-copy {
            font-size: 0.8rem;
            color: var(--kz-muted);
            line-height: 1.4;
        }

        .trust-copy strong {
            color: var(--kz-dark);
            display: block;
            font-size: 0.84rem;
        }

        /* ── Coluna imagem ── */
        .hero-img-col {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            animation: kzRight .6s .28s ease forwards;
        }

        @keyframes kzRight {
            from {
                opacity: 0;
                transform: translateX(28px);
            }

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

        .hero-img-wrap {
            position: relative;
            width: 100%;
            max-width: 520px;
        }

        /* decorador geométrico — reto, corporate */
        .hero-img-deco {
            position: absolute;
            top: 18px;
            right: -14px;
            width: 97%;
            height: 97%;
            background: var(--kz-primary-l);
            border: 2px solid rgba(0, 151, 178, .18);
            border-radius: 0;
            z-index: 0;
        }

        /* imagem principal LCP */
        .hero-img-wrap img {
            position: relative;
            z-index: 1;
            width: 100%;
            height: auto;
            border-radius: 3px;
            box-shadow: 0 20px 56px rgba(0, 0, 0, .13);
            display: block;
        }

        /* ── Floating cards ── */
        .fcard {
            position: absolute;
            z-index: 2;
            background: #fff;
            border-radius: 0;
            border-left: 3px solid var(--kz-primary);
            padding: 10px 14px;
            box-shadow: 0 6px 28px rgba(0, 0, 0, .13);
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 162px;
            font-family: 'DM Sans', sans-serif;
        }

        .fcard-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            flex-shrink: 0;
        }

        .fcard-label {
            font-size: 0.7rem;
            color: var(--kz-muted);
        }

        .fcard-value {
            font-size: 0.87rem;
            font-weight: 700;
            color: var(--kz-dark);
            margin-top: 2px;
            line-height: 1.3;
        }

        .fcard-1 {
            bottom: 14%;
            left: -7%;
            animation: kzFa 4s ease-in-out infinite;
        }

        .fcard-2 {
            top: 8%;
            right: -7%;
            animation: kzFb 4.6s ease-in-out infinite;
        }

        .fcard-1 .fcard-icon {
            background: #d1fae5;
            color: #064e3b;
        }

        .fcard-2 .fcard-icon {
            background: var(--kz-primary-l);
            color: var(--kz-primary-d);
        }

        @keyframes kzFa {

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

            50% {
                transform: translateY(-9px)
            }
        }

        @keyframes kzFb {

            0%,
            100% {
                transform: translateY(-4px)
            }

            50% {
                transform: translateY(4px)
            }
        }

        @keyframes kzUp {
            from {
                opacity: 0;
                transform: translateY(16px);
            }

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

        /* ── Prefers reduced motion ── */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .01ms !important;
            }

            .hero-title,
            .hero-sub,
            .hero-pills,
            .hero-ctas,
            .hero-trust,
            .hero-img-col {
                opacity: 1;
                transform: none;
            }
        }

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

            .fcard,
            .hero-img-deco {
                display: none;
            }
        }

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

            .hero-sub {
                max-width: 100%;
            }
        }

        @media (max-width: 575px) {
            .hero-section {
                padding: 48px 0 44px;
            }

            .hero-ctas {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-kz-primary,
            .btn-kz-outline {
                justify-content: center;
            }
        }

        /* Estilo para garantir que as logos respirem */
        .tech-logo {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Remove a barra de rolagem mas permite o scroll se necessário em mobile */
        #logoCarousel::-webkit-scrollbar {
            display: none;
        }