        :root {
            --bg-deep: #ffffff;
            --bg-dark: #f8faf9;
            --bg-mid: #f1f6f3;
            --bg-card: rgba(255, 255, 255, 0.75);
            --bg-card-solid: #ffffff;
            --line: rgba(13, 64, 35, 0.12);
            --line-soft: rgba(15, 23, 42, 0.07);

            --brand-deep: #0d4023;
            --brand: #15803d;
            --brand-bright: #16a34a;
            --brand-glow: #22c55e;
            --lime: #65a30d;
            --mint: #059669;

            --white: #ffffff;
            --ink: #0f172a;
            --text: #1e293b;
            --text-mid: #475569;
            --text-low: #94a3b8;

            --r-sm: 8px;
            --r: 14px;
            --r-lg: 22px;
            --r-xl: 32px;

            --t: cubic-bezier(0.16, 1, 0.3, 1);
            --t-fast: cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            background: var(--bg-deep);
            color: var(--text);
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--ink);
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -0.025em;
        }
        a { color: inherit; text-decoration: none; }
        i[data-lucide] { stroke-width: 1.75; }

        .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

        /* === GLOBAL BG MESH === */
        .mesh-bg {
            position: fixed;
            inset: 0;
            z-index: -2;
            background:
                radial-gradient(900px circle at 80% -10%, rgba(34, 197, 94, 0.18), transparent 60%),
                radial-gradient(800px circle at 0% 5%, rgba(132, 204, 22, 0.12), transparent 55%),
                radial-gradient(1200px circle at 50% 100%, rgba(13, 64, 35, 0.08), transparent 70%),
                var(--bg-deep);
        }
        .mesh-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(13, 64, 35, 0.045) 1px, transparent 1px);
            background-size: 4px 4px;
            opacity: 0.7;
        }

        /* === UTILITY BAR === */
        .utility {
            border-bottom: 1px solid var(--line-soft);
            font-size: 0.8rem;
            color: var(--text-mid);
            padding: 9px 0;
            background: rgba(255, 255, 255, 0.7);
        }
        .utility .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
        .utility .row { display: flex; gap: 24px; align-items: center; }
        .utility a:hover { color: var(--brand-deep); }
        .live-dot {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--brand);
        }
        .live-dot::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--brand-bright);
            box-shadow: 0 0 12px var(--brand-glow), 0 0 0 4px rgba(34, 197, 94, 0.15);
            animation: pulse 2s ease-out infinite;
        }
        @keyframes pulse {
            0%,100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.7; }
        }
        .utility a {
            transition: color 0.3s var(--t);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .utility a i { width: 14px; height: 14px; flex-shrink: 0; }

        /* === NAV === */
        nav.main {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--line-soft);
        }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 14px 0; }
        .brand-mark { display: flex; align-items: center; gap: 10px; }
        .brand-mark img {
            height: 52px;
            width: auto;
            object-fit: contain;
        }
        .nav-menu {
            display: flex;
            gap: 4px;
            align-items: center;
            background: rgba(13, 64, 35, 0.04);
            border: 1px solid var(--line-soft);
            border-radius: 100px;
            padding: 4px;
        }
        .nav-menu a {
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text-mid);
            padding: 9px 18px;
            border-radius: 100px;
            transition: all 0.3s var(--t);
        }
        .nav-menu a:hover { color: var(--ink); background: rgba(13, 64, 35, 0.08); }
        .nav-actions { display: flex; gap: 12px; align-items: center; }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 22px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 100px;
            transition: all 0.35s var(--t);
            cursor: pointer;
            border: 1px solid transparent;
            white-space: nowrap;
            letter-spacing: -0.005em;
        }
        .btn i { width: 16px; height: 16px; transition: transform 0.3s var(--t); }
        .btn-primary {
            background: var(--brand-deep);
            color: var(--white);
            border-color: var(--brand-deep);
            box-shadow: 0 8px 24px -8px rgba(13, 64, 35, 0.4);
        }
        .btn-primary:hover {
            background: var(--brand);
            border-color: var(--brand);
            transform: translateY(-2px);
            box-shadow: 0 14px 30px -8px rgba(34, 197, 94, 0.5), 0 0 0 4px rgba(34, 197, 94, 0.12);
        }
        .btn-primary:hover i { transform: translateX(3px); }
        .btn-ghost {
            background: rgba(13, 64, 35, 0.04);
            color: var(--ink);
            border-color: var(--line);
        }
        .btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
        .btn-lg { padding: 14px 28px; font-size: 0.95rem; }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(13, 64, 35, 0.06);
            border: 1px solid rgba(13, 64, 35, 0.15);
            color: var(--brand-deep);
            padding: 7px 14px;
            border-radius: 100px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        .badge i { width: 13px; height: 13px; }

        /* === HERO === */
        .hero {
            position: relative;
            padding: 70px 0 40px;
            overflow: hidden;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }
        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.8rem);
            color: var(--ink);
            margin: 28px 0 24px;
            font-weight: 700;
            letter-spacing: -0.04em;
            line-height: 1;
        }
        .hero h1 .grad {
            background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-bright) 50%, var(--mint) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }
        .hero .lede {
            font-size: 1.12rem;
            color: var(--text-mid);
            max-width: 520px;
            margin-bottom: 36px;
            line-height: 1.6;
        }
        .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
        .hero-cta .meta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text-mid);
            font-size: 0.85rem;
            margin-left: 8px;
        }
        .hero-cta .meta i { width: 14px; height: 14px; color: var(--brand-bright); }

        .hero-trust {
            display: flex;
            gap: 24px;
            margin-top: 56px;
            padding-top: 32px;
            border-top: 1px solid var(--line-soft);
            flex-wrap: wrap;
        }
        .hero-trust .item {
            display: flex;
            flex-direction: column;
            gap: 4px;
            min-width: 110px;
        }
        .hero-trust .num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -0.03em;
        }
        .hero-trust .num .plus { color: var(--brand-bright); }
        .hero-trust .lbl {
            font-size: 0.78rem;
            color: var(--text-low);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* === HERO DASHBOARD MOCKUP === */
        .hero-dash {
            position: relative;
            perspective: 1200px;
        }
        .dash-card {
            position: relative;
            z-index: 1;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid var(--line);
            border-radius: var(--r-lg);
            padding: 28px;
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            box-shadow:
                0 50px 100px -20px rgba(13, 64, 35, 0.18),
                0 30px 60px -30px rgba(34, 197, 94, 0.18),
                inset 0 1px 0 rgba(255,255,255,0.8);
            transform: rotateY(-6deg) rotateX(2deg);
            transition: transform 0.6s var(--t);
        }
        .dash-card:hover { transform: rotateY(-3deg) rotateX(0deg); }

        .dash-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 18px;
            margin-bottom: 18px;
            border-bottom: 1px solid var(--line-soft);
        }
        .dash-title { display: flex; align-items: center; gap: 10px; }
        .dash-title-ic {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(13, 64, 35, 0.08));
            border: 1px solid rgba(13, 64, 35, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-deep);
        }
        .dash-title-ic i { width: 18px; height: 18px; stroke-width: 2; }
        .dash-title-text .h { font-family: 'Plus Jakarta Sans'; font-weight: 700; font-size: 0.95rem; color: var(--ink); }
        .dash-title-text .s { font-size: 0.74rem; color: var(--text-low); margin-top: 1px; }
        .dash-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(34, 197, 94, 0.10);
            color: var(--brand-deep);
            padding: 5px 11px;
            border-radius: 100px;
            font-size: 0.72rem;
            font-weight: 700;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }
        .dash-status::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brand-bright);
            box-shadow: 0 0 8px var(--brand-bright);
        }

        .dash-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--line-soft);
        }
        .dash-row:last-child { border-bottom: none; padding-bottom: 0; }
        .dash-row .left { display: flex; align-items: center; gap: 12px; }
        .dash-row .ic {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: rgba(13, 64, 35, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-deep);
        }
        .dash-row .ic i { width: 14px; height: 14px; }
        .dash-row .name { font-weight: 600; font-size: 0.85rem; color: var(--ink); }
        .dash-row .sub { font-size: 0.72rem; color: var(--text-low); margin-top: 1px; }
        .dash-row .pill {
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 9px;
            border-radius: 6px;
            background: rgba(34, 197, 94, 0.12);
            color: var(--brand-deep);
            border: 1px solid rgba(34, 197, 94, 0.3);
        }
        .dash-row .pill.warn { background: rgba(234, 88, 12, 0.10); color: #b45309; border-color: rgba(234, 88, 12, 0.25); }

        .dash-progress {
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid var(--line-soft);
        }
        .dash-progress .top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-size: 0.78rem;
        }
        .dash-progress .top .lbl { color: var(--text-mid); }
        .dash-progress .top .pct { color: var(--brand-deep); font-weight: 700; font-family: 'Plus Jakarta Sans'; }
        .dash-progress .bar {
            height: 6px;
            background: rgba(13, 64, 35, 0.08);
            border-radius: 100px;
            overflow: hidden;
            position: relative;
        }
        .dash-progress .fill {
            height: 100%;
            width: 92%;
            background: linear-gradient(90deg, var(--brand-bright), var(--lime));
            border-radius: 100px;
            box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
            position: relative;
            animation: fill 2s var(--t) forwards;
        }
        @keyframes fill { from { width: 0; } to { width: 92%; } }

        /* Floating mini cards */
        .float-card {
            position: absolute;
            z-index: 5;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--line);
            border-radius: var(--r);
            padding: 14px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--ink);
            box-shadow: 0 20px 40px -10px rgba(13, 64, 35, 0.18), 0 4px 12px -4px rgba(13, 64, 35, 0.1);
            animation: float 6s ease-in-out infinite;
        }
        .float-card .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--brand-bright);
            box-shadow: 0 0 10px var(--brand-bright);
        }
        .float-card.f1 { top: -22px; left: -28px; animation-delay: 0s; }
        .float-card.f2 { bottom: -20px; right: -32px; animation-delay: 1.5s; }
        @keyframes float {
            0%,100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* === LOGO STRIP === */
        .strip {
            border-top: 1px solid var(--line-soft);
            border-bottom: 1px solid var(--line-soft);
            padding: 28px 0;
            background: rgba(13, 64, 35, 0.025);
        }
        .strip-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
        }
        .strip-label {
            font-size: 0.78rem;
            color: var(--text-low);
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }
        .strip-items {
            display: flex;
            gap: 36px;
            align-items: center;
            flex-wrap: wrap;
        }
        .strip-items .it {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Plus Jakarta Sans';
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-mid);
            opacity: 0.75;
            transition: all 0.3s var(--t);
        }
        .strip-items .it:hover { opacity: 1; color: var(--brand-deep); }
        .strip-items .it i { width: 18px; height: 18px; color: var(--brand-bright); }

        /* === SECTION HEAD === */
        .section { padding: 110px 0; position: relative; }
        .section-head {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 64px;
        }
        .section-head h2 {
            font-size: clamp(2.2rem, 4vw, 3.4rem);
            color: var(--ink);
            margin: 18px 0 18px;
            font-weight: 700;
            letter-spacing: -0.035em;
            line-height: 1.05;
        }
        .section-head h2 .grad {
            background: linear-gradient(135deg, var(--brand-deep), var(--brand-bright));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .section-head p {
            font-size: 1.05rem;
            color: var(--text-mid);
            max-width: 560px;
            margin: 0 auto;
        }

        /* === SERVICES TABS === */
        .services-tabs {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid var(--line);
            border-radius: 100px;
            padding: 6px;
            display: inline-flex;
            gap: 2px;
            margin: 0 auto 56px;
            backdrop-filter: blur(8px);
            box-shadow: 0 8px 24px -8px rgba(13, 64, 35, 0.08);
        }
        .services-tabs-wrap { display: flex; justify-content: center; }
        .tab-btn {
            padding: 11px 24px;
            font-family: 'Plus Jakarta Sans';
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-mid);
            background: transparent;
            border: none;
            border-radius: 100px;
            cursor: pointer;
            transition: all 0.4s var(--t);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .tab-btn .num {
            font-family: 'Plus Jakarta Sans';
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--text-low);
            transition: color 0.3s var(--t);
        }
        .tab-btn:hover { color: var(--ink); }
        .tab-btn.active {
            background: linear-gradient(135deg, var(--brand-deep), var(--brand));
            color: var(--white);
            box-shadow: 0 8px 24px -6px rgba(13, 64, 35, 0.4);
        }
        .tab-btn.active .num { color: rgba(255, 255, 255, 0.7); }

        /* TODOS os grupos visíveis empilhados (sem cliques) */
        .services-tabs-wrap { display: none; }
        .tab-content { display: block; margin-bottom: 64px; }
        .tab-content:last-child { margin-bottom: 0; }
        @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

        /* Cabeçalho de cada grupo (no estilo do antigo tab-btn active) */
        .group-title {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--brand-deep), var(--brand));
            color: var(--white);
            padding: 12px 24px;
            border-radius: 100px;
            font-family: 'Plus Jakarta Sans';
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 28px;
            box-shadow: 0 8px 24px -6px rgba(13, 64, 35, 0.35);
        }
        .group-title .num {
            font-family: 'Plus Jakarta Sans';
            font-size: 0.78rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.04em;
        }

        /* === SERVICE CARDS GRID === */
        .svc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .svc-card {
            background: var(--bg-card-solid);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--line);
            border-radius: var(--r-lg);
            padding: 28px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s var(--t);
            cursor: default;
            box-shadow: 0 4px 12px -4px rgba(13, 64, 35, 0.06);
        }
        .svc-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(34, 197, 94, 0.10), transparent 50%);
            opacity: 0;
            transition: opacity 0.4s var(--t);
            pointer-events: none;
        }
        .svc-card:hover { transform: translateY(-6px); border-color: rgba(34, 197, 94, 0.4); box-shadow: 0 24px 48px -12px rgba(13, 64, 35, 0.18); }
        .svc-card:hover::before { opacity: 1; }
        .svc-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }
        .svc-sigla {
            font-family: 'Plus Jakarta Sans';
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--brand-deep);
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, var(--brand-deep), var(--brand-bright));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .svc-norm {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--brand-deep);
            background: rgba(13, 64, 35, 0.06);
            border: 1px solid rgba(13, 64, 35, 0.15);
            padding: 4px 10px;
            border-radius: 6px;
            letter-spacing: 0.04em;
            font-family: 'Plus Jakarta Sans';
        }
        .svc-card h4 {
            font-size: 1.05rem;
            color: var(--ink);
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .svc-card p {
            font-size: 0.88rem;
            color: var(--text-mid);
            line-height: 1.55;
            position: relative;
            z-index: 1;
        }
        .svc-card .arrow {
            position: absolute;
            bottom: 24px;
            right: 24px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-mid);
            transition: all 0.4s var(--t);
            z-index: 1;
        }
        .svc-card:hover .arrow {
            background: var(--brand-deep);
            border-color: var(--brand-deep);
            color: var(--white);
            transform: rotate(-45deg);
        }
        .svc-card .arrow i { width: 14px; height: 14px; }

        /* Featured card spans 2 cols */
        .svc-card.featured {
            grid-column: span 2;
            background: linear-gradient(135deg, var(--brand-deep) 0%, #114a2a 60%, #16632e 100%);
            border-color: rgba(34, 197, 94, 0.3);
            min-height: 220px;
            color: rgba(255,255,255,0.85);
        }
        .svc-card.featured::before {
            background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(163, 230, 53, 0.18), transparent 50%);
        }
        .svc-card.featured .svc-sigla {
            font-size: 2.2rem;
            background: linear-gradient(135deg, #d9f99d, #6ee7b7);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .svc-card.featured .svc-norm {
            color: #d9f99d;
            background: rgba(163, 230, 53, 0.1);
            border-color: rgba(163, 230, 53, 0.3);
        }
        .svc-card.featured h4 { font-size: 1.2rem; color: var(--white); }
        .svc-card.featured p { color: rgba(255,255,255,0.75); }
        .svc-card.featured .arrow { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }
        .svc-card.featured:hover .arrow { background: #d9f99d; border-color: #d9f99d; color: var(--brand-deep); }

        /* === PROCESS === */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            position: relative;
        }
        .process-grid::before {
            content: '';
            position: absolute;
            top: 32px;
            left: 8%;
            right: 8%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.5), rgba(34, 197, 94, 0.3), transparent);
        }
        .step {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--r-lg);
            padding: 28px;
            position: relative;
            transition: all 0.4s var(--t);
            box-shadow: 0 4px 12px -4px rgba(13, 64, 35, 0.06);
        }
        .step:hover { border-color: rgba(34, 197, 94, 0.4); transform: translateY(-4px); box-shadow: 0 24px 48px -12px rgba(13, 64, 35, 0.18); }
        .step .num-circle {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--white);
            border: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -60px auto 24px;
            font-family: 'Plus Jakarta Sans';
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--brand-deep);
            position: relative;
            z-index: 2;
            box-shadow: 0 8px 20px -6px rgba(13, 64, 35, 0.15);
        }
        .step .num-circle::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            border: 2px solid var(--brand-bright);
            opacity: 0;
            transition: opacity 0.3s var(--t);
        }
        .step:hover .num-circle { color: var(--brand-bright); }
        .step:hover .num-circle::after { opacity: 1; }
        .step .ico {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(13, 64, 35, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-deep);
            margin-bottom: 18px;
        }
        .step .ico i { width: 20px; height: 20px; }
        .step h4 { font-size: 1.15rem; margin-bottom: 10px; color: var(--ink); text-align: center; }
        .step p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.5; text-align: center; }
        .process-grid {
            padding-top: 32px;
        }

        /* === WHY US (Bento) === */
        .bento {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            grid-auto-rows: 220px;
            gap: 16px;
        }
        .bento-card {
            background: var(--white);
            backdrop-filter: blur(16px);
            border: 1px solid var(--line);
            border-radius: var(--r-lg);
            padding: 28px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s var(--t);
            box-shadow: 0 4px 12px -4px rgba(13, 64, 35, 0.05);
        }
        .bento-card:hover { border-color: rgba(34, 197, 94, 0.4); transform: translateY(-4px); box-shadow: 0 24px 48px -12px rgba(13, 64, 35, 0.18); }
        .bento-card .ic {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--brand-deep), var(--brand));
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            box-shadow: 0 8px 20px -4px rgba(13, 64, 35, 0.3);
        }
        .bento-card .ic i { width: 22px; height: 22px; }
        .bento-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
        .bento-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.55; }

        .bento-card.b1 { grid-column: span 4; grid-row: span 2; padding: 40px; background: linear-gradient(135deg, var(--brand-deep) 0%, #0f4a28 60%, #16632e 100%); border-color: rgba(34, 197, 94, 0.25); color: rgba(255,255,255,0.85); }
        .bento-card.b1::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(163, 230, 53, 0.25), transparent 70%);
            filter: blur(60px);
        }
        .bento-card.b1 .ic { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, #a3e635, #6ee7b7); color: var(--brand-deep); }
        .bento-card.b1 .ic i { width: 28px; height: 28px; }
        .bento-card.b1 h4 { font-size: 1.8rem; margin-bottom: 14px; color: var(--white); }
        .bento-card.b1 p { font-size: 1.02rem; max-width: 480px; color: rgba(255,255,255,0.75); }
        .bento-card.b1 .doc-mock {
            position: absolute;
            right: 32px;
            bottom: 32px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 12px;
            padding: 12px 16px;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--white);
            z-index: 2;
        }
        .bento-card.b1 .doc-mock i { width: 14px; height: 14px; color: #a3e635; }

        .bento-card.b2 { grid-column: span 2; grid-row: span 2; }
        .bento-card.b2 .visual {
            margin-top: 14px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .bento-card.b2 .row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 14px;
            background: rgba(13, 64, 35, 0.04);
            border-radius: 8px;
            font-size: 0.85rem;
            color: var(--text);
            font-weight: 500;
        }
        .bento-card.b2 .row .check { color: var(--brand-bright); }
        .bento-card.b2 .row .check i { width: 14px; height: 14px; }

        .bento-card.b3 { grid-column: span 3; }
        .bento-card.b4 { grid-column: span 3; }

        /* === CTA === */
        .cta-section {
            padding: 30px 0;
            position: relative;
        }
        .cta-wrap {
            background: linear-gradient(135deg, var(--brand-deep) 0%, #052e16 50%, #0a3d1f 100%);
            border-radius: var(--r-xl);
            padding: 80px 64px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(34, 197, 94, 0.2);
        }
        .cta-wrap::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(600px circle at 20% 50%, rgba(34, 197, 94, 0.18), transparent 60%),
                radial-gradient(500px circle at 80% 50%, rgba(163, 230, 53, 0.12), transparent 60%);
        }
        .cta-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
            background-size: 32px 32px;
            mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent 70%);
        }
        .cta-wrap > * { position: relative; z-index: 1; }
        .cta-wrap h2 {
            font-size: clamp(2.2rem, 4.4vw, 3.6rem);
            color: var(--white);
            margin: 18px 0 18px;
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -0.035em;
        }
        .cta-wrap h2 .grad {
            background: linear-gradient(135deg, var(--lime), var(--mint));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .cta-wrap p {
            font-size: 1.08rem;
            color: rgba(255,255,255,0.75);
            max-width: 580px;
            margin: 0 auto 36px;
        }
        .cta-wrap .badge {
            background: rgba(163, 230, 53, 0.12);
            border-color: rgba(163, 230, 53, 0.3);
            color: #a3e635;
        }
        .cta-wrap h2 .grad {
            background: linear-gradient(135deg, #d9f99d, #6ee7b7);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .cta-wrap .btn-primary {
            background: #a3e635;
            color: var(--brand-deep);
            border-color: #a3e635;
            box-shadow: 0 8px 24px -8px rgba(163, 230, 53, 0.5);
        }
        .cta-wrap .btn-primary:hover {
            background: #d9f99d;
            border-color: #d9f99d;
            box-shadow: 0 14px 30px -8px rgba(163, 230, 53, 0.7);
        }
        .cta-wrap .btn-ghost {
            background: rgba(255,255,255,0.08);
            color: var(--white);
            border-color: rgba(255,255,255,0.18);
        }
        .cta-wrap .btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: var(--white); }
        .cta-buttons { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

        /* === CONTACT === */
        .contact-section { padding: 60px 0 90px; }
        .contact-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 56px;
        }
        .contact-info h2 {
            font-size: clamp(2rem, 3.8vw, 3rem);
            color: var(--ink);
            margin: 18px 0 18px;
        }
        .contact-info h2 .grad {
            background: linear-gradient(135deg, var(--brand-deep), var(--brand-bright));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .contact-info > p {
            font-size: 1.05rem;
            color: var(--text-mid);
            margin-bottom: 36px;
            max-width: 460px;
        }
        .contact-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 28px;
        }
        .ccard {
            background: var(--white);
            backdrop-filter: blur(12px);
            border: 1px solid var(--line);
            border-radius: var(--r);
            padding: 20px;
            transition: all 0.4s var(--t);
            box-shadow: 0 4px 12px -4px rgba(13, 64, 35, 0.05);
        }
        .ccard:hover { border-color: rgba(34, 197, 94, 0.4); transform: translateY(-3px); box-shadow: 0 16px 32px -8px rgba(13, 64, 35, 0.12); }
        .ccard .ic {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(13, 64, 35, 0.08);
            color: var(--brand-deep);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }
        .ccard .ic i { width: 18px; height: 18px; }
        .ccard h5 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-low); margin-bottom: 4px; font-weight: 600; font-family: 'Inter'; }
        .ccard p { font-size: 0.95rem; color: var(--ink); font-weight: 600; line-height: 1.3; font-family: 'Plus Jakarta Sans'; }

        .map-frame {
            border-radius: var(--r);
            overflow: hidden;
            border: 1px solid var(--line);
            height: 220px;
        }
        .map-frame iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(0.2) contrast(1.05) saturate(0.85);
        }

        .form-card {
            background: var(--white);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid var(--line);
            border-radius: var(--r-xl);
            padding: 44px;
            position: relative;
            box-shadow: 0 30px 80px -20px rgba(13, 64, 35, 0.18);
        }
        .form-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 0;
            right: 0;
            height: 4px;
            border-radius: var(--r-xl) var(--r-xl) 0 0;
            background: linear-gradient(90deg, var(--brand-deep), var(--brand-bright), var(--brand-deep));
        }
        .form-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 28px;
            padding-bottom: 22px;
            border-bottom: 1px solid var(--line-soft);
        }
        .form-head h3 { font-size: 1.4rem; color: var(--ink); }
        .form-head .tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(34, 197, 94, 0.10);
            color: var(--brand-deep);
            padding: 5px 11px;
            border-radius: 100px;
            font-size: 0.74rem;
            font-weight: 700;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }
        .form-head .tag::before {
            content: '';
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--brand-bright);
            box-shadow: 0 0 8px var(--brand-bright);
        }
        .field { margin-bottom: 16px; }
        .field label {
            display: block;
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--text-mid);
            margin-bottom: 6px;
        }
        .field input, .field textarea, .field select {
            width: 100%;
            padding: 13px 16px;
            border: 1px solid var(--line);
            border-radius: 10px;
            background: var(--bg-mid);
            color: var(--ink);
            font-family: 'Inter';
            font-size: 0.95rem;
            line-height: 1.4;
            transition: all 0.3s var(--t);
        }
        /* === CUSTOM SELECT === */
        .select-wrap { position: relative; }
        .select-trigger {
            width: 100%;
            padding: 13px 16px;
            border: 1px solid var(--line);
            border-radius: 10px;
            background: var(--bg-mid);
            color: var(--ink);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            line-height: 1.4;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            transition: all 0.3s var(--t);
        }
        .select-trigger:hover { border-color: rgba(13, 64, 35, 0.25); }
        .select-trigger:focus,
        .select-trigger[aria-expanded="true"] {
            outline: none;
            border-color: var(--brand-bright);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
        }
        .select-trigger .chev {
            width: 18px;
            height: 18px;
            color: var(--brand-deep);
            transition: transform 0.3s var(--t);
            flex-shrink: 0;
        }
        .select-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }
        .select-value.placeholder { color: var(--text-low); }

        .select-panel {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 14px;
            box-shadow: 0 24px 48px -12px rgba(13, 64, 35, 0.20), 0 4px 12px -4px rgba(13, 64, 35, 0.08);
            padding: 8px;
            max-height: 320px;
            overflow-y: auto;
            z-index: 20;
            list-style: none;
            opacity: 0;
            transform: translateY(-8px) scale(0.98);
            pointer-events: none;
            transition: opacity 0.22s var(--t), transform 0.22s var(--t);
            transform-origin: top center;
        }
        .select-panel.open {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }
        .select-panel::-webkit-scrollbar { width: 8px; }
        .select-panel::-webkit-scrollbar-track { background: transparent; }
        .select-panel::-webkit-scrollbar-thumb { background: var(--line); border-radius: 100px; }
        .select-panel::-webkit-scrollbar-thumb:hover { background: var(--text-low); }

        .select-option {
            padding: 12px 14px;
            border-radius: 8px;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            font-size: 0.93rem;
            color: var(--text);
            font-weight: 400;
            transition: all 0.18s var(--t);
            user-select: none;
            list-style: none;
        }
        .select-option:hover,
        .select-option:focus {
            background: rgba(13, 64, 35, 0.06);
            color: var(--brand-deep);
            outline: none;
        }
        .select-option.selected {
            background: rgba(34, 197, 94, 0.10);
            color: var(--brand-deep);
            font-weight: 600;
        }
        .field input:focus, .field textarea:focus, .field select:focus {
            outline: none;
            border-color: var(--brand-bright);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
        }
        .field input::placeholder, .field textarea::placeholder { color: var(--text-low); }
        .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .field textarea { resize: vertical; min-height: 90px; }
        .field select option { background: var(--white); color: var(--ink); }

        .submit-btn {
            width: 100%;
            padding: 16px;
            justify-content: center;
            font-size: 1rem;
            margin-top: 8px;
        }

        /* === FOOTER === */
        footer {
            border-top: 1px solid var(--line-soft);
            padding: 70px 0 24px;
            background: linear-gradient(180deg, var(--white) 0%, rgba(13, 64, 35, 0.04) 100%);
        }
        .foot-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 56px;
            margin-bottom: 48px;
        }
        .foot-brand img {
            height: 60px;
            width: auto;
            margin-bottom: 18px;
        }
        .foot-brand p {
            font-size: 0.92rem;
            color: var(--text-mid);
            max-width: 320px;
            line-height: 1.55;
            margin-bottom: 22px;
        }
        .foot-social { display: flex; gap: 10px; }
        .foot-social span {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--white);
            border: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-mid);
        }
        .foot-social i { width: 16px; height: 16px; }

        .foot-col h6 {
            font-family: 'Plus Jakarta Sans';
            font-size: 0.85rem;
            color: var(--ink);
            margin-bottom: 18px;
            font-weight: 700;
        }
        .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .foot-col a {
            font-size: 0.9rem;
            color: var(--text-mid);
            transition: color 0.3s var(--t);
        }
        .foot-col a:hover { color: var(--brand-deep); }
        .foot-bottom {
            border-top: 1px solid var(--line-soft);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.82rem;
            color: var(--text-low);
            flex-wrap: wrap;
            gap: 12px;
        }
        .foot-bottom .meta-row { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
        .foot-bottom .meta-row .live-dot { font-size: 0.78rem; }

        /* WhatsApp Float */
        .wa-float {
            position: fixed;
            right: 24px;
            bottom: 24px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px 14px 16px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
            border-radius: 100px;
            box-shadow: 0 16px 40px -10px rgba(37,211,102,0.6), 0 0 0 4px rgba(37,211,102,0.15);
            z-index: 50;
            transition: all 0.3s var(--t);
            font-weight: 600;
            font-size: 0.92rem;
            font-family: 'Plus Jakarta Sans';
        }
        .wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 50px -10px rgba(37,211,102,0.8), 0 0 0 6px rgba(37,211,102,0.2); }
        .wa-float i { width: 22px; height: 22px; }

        /* === SCROLL REVEAL === */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s var(--t), transform 0.7s var(--t);
        }
        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }

        /* === LEAD MAGNET (FOOTER) === */
        .lead-magnet {
            background: linear-gradient(135deg, var(--brand-deep) 0%, #114a2a 60%, #16632e 100%);
            border-radius: var(--r-xl);
            padding: 48px 56px;
            margin-bottom: 56px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(34, 197, 94, 0.25);
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .lead-magnet::after {
            content: '';
            position: absolute;
            bottom: -160px;
            right: -160px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(163, 230, 53, 0.18), transparent 70%);
            filter: blur(60px);
        }
        .lead-magnet-text {
            position: relative;
            z-index: 1;
            color: rgba(255,255,255,0.85);
        }
        .lead-magnet-text .badge {
            background: rgba(163, 230, 53, 0.12);
            border-color: rgba(163, 230, 53, 0.3);
            color: #d9f99d;
            margin-bottom: 14px;
        }
        .lead-magnet-text h3 {
            font-size: 1.6rem;
            color: var(--white);
            margin-bottom: 8px;
            font-weight: 700;
            line-height: 1.15;
        }
        .lead-magnet-text p {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.72);
            max-width: 420px;
        }
        .lead-form {
            position: relative;
            z-index: 1;
            display: flex;
            gap: 8px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 100px;
            padding: 6px 6px 6px 20px;
            backdrop-filter: blur(8px);
        }
        .lead-form input {
            flex: 1;
            background: transparent;
            border: none;
            color: var(--white);
            font-family: 'Inter';
            font-size: 0.95rem;
            padding: 8px 0;
            min-width: 0;
        }
        .lead-form input:focus { outline: none; }
        .lead-form input::placeholder { color: rgba(255,255,255,0.5); }
        .lead-form button {
            background: #a3e635;
            color: var(--brand-deep);
            border: none;
            padding: 10px 22px;
            border-radius: 100px;
            font-family: 'Plus Jakarta Sans';
            font-weight: 700;
            font-size: 0.88rem;
            cursor: pointer;
            transition: all 0.3s var(--t);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .lead-form button:hover { background: #d9f99d; transform: translateY(-1px); }
        .lead-form button i { width: 14px; height: 14px; }

        /* === FORM ENHANCEMENTS === */
        .lgpd-notice {
            font-size: 0.78rem;
            color: var(--text-mid);
            line-height: 1.5;
            margin-top: 16px;
            display: flex;
            gap: 8px;
            align-items: flex-start;
        }
        .lgpd-notice input[type="checkbox"] {
            width: auto;
            margin-top: 3px;
            accent-color: var(--brand-deep);
            flex-shrink: 0;
        }
        .lgpd-notice label {
            margin: 0;
            cursor: pointer;
            font-weight: 400;
            color: var(--text-mid);
            text-transform: none;
            letter-spacing: 0;
            font-size: 0.78rem;
        }
        .lgpd-notice a { color: var(--brand-deep); text-decoration: underline; }

        /* === FIELD VALIDATION === */
        .field-error {
            display: block;
            font-size: 0.8rem;
            color: #dc2626;
            line-height: 1.3;
            margin-top: 6px;
            min-height: 0;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.25s var(--t), opacity 0.2s var(--t), margin-top 0.25s var(--t);
        }
        .field-error.show {
            max-height: 40px;
            opacity: 1;
            margin-top: 6px;
        }
        .field-error::before {
            content: '⚠ ';
            font-weight: 700;
        }
        .field.has-error input,
        .field.has-error textarea,
        .field.has-error .select-trigger {
            border-color: #dc2626 !important;
            background: rgba(220, 38, 38, 0.04);
        }
        .field.has-error input:focus,
        .field.has-error textarea:focus {
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
        }
        .lgpd-notice.has-error input[type="checkbox"] {
            outline: 2px solid #dc2626;
            outline-offset: 2px;
            border-radius: 3px;
        }
        .field-error-lgpd { margin-left: 26px; }

        .form-status {
            display: none;
            margin-top: 16px;
            padding: 16px 20px;
            border-radius: 12px;
            font-size: 0.92rem;
            line-height: 1.5;
            align-items: flex-start;
            gap: 10px;
        }
        .form-status.show { display: flex; }
        .form-status.success { background: rgba(34, 197, 94, 0.10); border: 1px solid rgba(34, 197, 94, 0.3); color: var(--brand-deep); }
        .form-status.error { background: rgba(220, 38, 38, 0.08); border: 1px solid rgba(220, 38, 38, 0.25); color: #b91c1c; }
        .form-status i { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

        /* === MOTION OFF === */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            .reveal { opacity: 1; transform: none; }
            .dash-card { transform: none !important; }
            .float-card { animation: none; }
            .live-dot::before { animation: none; }
            .dash-progress .fill { animation: none; width: 92%; }
        }

        /* === A11Y FOCUS === */
        :focus-visible {
            outline: 2px solid var(--brand-bright);
            outline-offset: 3px;
            border-radius: 4px;
        }
        .skip-link {
            position: absolute;
            left: -9999px;
            top: 0;
            background: var(--brand-deep);
            color: var(--white);
            padding: 12px 20px;
            font-weight: 600;
            border-radius: 0 0 8px 0;
            z-index: 200;
            font-family: 'Plus Jakarta Sans';
        }
        .skip-link:focus { left: 0; }

        /* === ENV CONTROL === */
        .env-section { padding: 60px 0 80px; }
        .env-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 56px;
            align-items: start;
            background: linear-gradient(135deg, var(--brand-deep) 0%, #0f4a28 55%, #145e34 100%);
            border-radius: var(--r-xl);
            padding: 64px 56px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(34, 197, 94, 0.2);
            box-shadow: 0 30px 80px -20px rgba(13, 64, 35, 0.35);
        }
        .env-grid::after {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(163, 230, 53, 0.18), transparent 70%);
            filter: blur(60px);
            pointer-events: none;
        }
        .env-grid::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
            background-size: 32px 32px;
            mask-image: radial-gradient(ellipse 70% 90% at 30% 50%, black, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse 70% 90% at 30% 50%, black, transparent 70%);
            pointer-events: none;
        }
        .env-content { position: relative; z-index: 1; color: rgba(255,255,255,0.85); }
        .env-content .badge {
            background: rgba(163, 230, 53, 0.12);
            border-color: rgba(163, 230, 53, 0.3);
            color: #d9f99d;
            margin-bottom: 20px;
        }
        .env-content h2 {
            font-size: clamp(1.9rem, 3.4vw, 2.6rem);
            color: var(--white);
            margin-bottom: 18px;
            line-height: 1.05;
        }
        .env-content h2 .grad {
            background: linear-gradient(135deg, #d9f99d, #6ee7b7);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .env-content p {
            font-size: 1.02rem;
            color: rgba(255,255,255,0.72);
            margin-bottom: 28px;
            max-width: 440px;
            line-height: 1.6;
        }
        .env-content .btn {
            background: #a3e635;
            color: var(--brand-deep);
            border-color: #a3e635;
            box-shadow: 0 8px 24px -8px rgba(163, 230, 53, 0.5);
        }
        .env-content .btn:hover {
            background: #d9f99d;
            border-color: #d9f99d;
            transform: translateY(-2px);
        }
        .env-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            position: relative;
            z-index: 1;
        }
        .env-item {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 18px;
            display: flex;
            gap: 12px;
            align-items: flex-start;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: all 0.3s var(--t);
        }
        .env-item:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(163, 230, 53, 0.3);
            transform: translateY(-2px);
        }
        .env-check {
            width: 26px;
            height: 26px;
            background: #a3e635;
            color: var(--brand-deep);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .env-check i { width: 14px; height: 14px; stroke-width: 3; }
        .env-item h5 {
            font-size: 0.95rem;
            color: var(--white);
            margin-bottom: 3px;
            font-weight: 600;
            line-height: 1.25;
        }
        .env-item p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.62);
            line-height: 1.4;
            margin: 0;
        }

        /* === PARTNERS === */
        .partners-section { padding: 60px 0 80px; }
        .partners-section .section-head { margin-bottom: 48px; }
        .partners-marquee {
            overflow: hidden;
            position: relative;
            mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
        }
        .partners-track {
            display: flex;
            gap: 20px;
            animation: partners-scroll 40s linear infinite;
            width: max-content;
        }
        .partners-marquee:hover .partners-track {
            animation-play-state: paused;
        }
        /* Brilho por parceiro, usado só pela variante P&B: iguala o peso dos
           quatro tiles, que têm fundos de luminosidade bem diferente. */
        .partners-row .partner-card:nth-child(1) { --b: 0.97; }
        .partners-row .partner-card:nth-child(2) { --b: 1.60; }
        .partners-row .partner-card:nth-child(3) { --b: 0.86; }
        .partners-row .partner-card:nth-child(4) { --b: 1.42; }

        /* Variante colorida — sem máscara */
        .partners-row--color .partner-card {
            filter: none;
            opacity: 1;
        }
        .partners-label {
            text-align: center;
            font-size: 0.76rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--text-low);
            margin-bottom: 20px;
        }
        .partners-row + .partners-label { margin-top: 56px; }

        /* Linha estática — usada enquanto o número de parceiros não enche o carrossel */
        .partners-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 44px;
        }
        .partner-card {
            width: 160px;
            height: 116px;
            border-radius: var(--r);
            overflow: hidden;
            flex-shrink: 0;
            transition: all 0.35s var(--t);
            /* Preto e branco no card inteiro, mais um brilho por parceiro
               (--b, inline no HTML) que iguala o peso dos quatro tiles: os
               logos têm fundos de luminosidade muito diferente. */
            filter: grayscale(1) brightness(var(--b, 1));
            opacity: 0.78;
        }
        .partner-card:hover {
            transform: translateY(-4px);
            filter: none;
            opacity: 1;
        }
        .partner-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }
        @keyframes partners-scroll {
            from { transform: translateX(0); }
            to { transform: translateX(calc(-50% - 10px)); }
        }
        @media (prefers-reduced-motion: reduce) {
            .partners-track { animation: none; }
        }

        /* === MISSION & VALUES === */
        .values-section { padding: 60px 0 80px; }
        .values-section .section-head { margin-bottom: 40px; }

        .mission-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--r-xl);
            padding: 56px 48px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 16px -8px rgba(13, 64, 35, 0.08);
        }
        .mission-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-deep), var(--brand-bright), var(--brand-deep));
        }
        .mission-card .label {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.76rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--brand-deep);
            margin-bottom: 24px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }
        .mission-card .label::before,
        .mission-card .label::after {
            content: '';
            width: 32px;
            height: 1px;
            background: var(--brand-bright);
        }
        .mission-card blockquote {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(1.3rem, 2.4vw, 1.9rem);
            font-weight: 600;
            color: var(--ink);
            line-height: 1.25;
            letter-spacing: -0.02em;
            margin: 0 auto;
            max-width: 820px;
        }
        .mission-card blockquote em {
            color: var(--brand-deep);
            font-style: italic;
            font-weight: 500;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .value-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--r-lg);
            padding: 28px;
            position: relative;
            transition: all 0.4s var(--t);
            box-shadow: 0 4px 12px -4px rgba(13, 64, 35, 0.05);
        }
        .value-card:hover {
            transform: translateY(-4px);
            border-color: rgba(34, 197, 94, 0.3);
            box-shadow: 0 18px 36px -10px rgba(13, 64, 35, 0.15);
        }
        .value-card .ic {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(13, 64, 35, 0.08);
            color: var(--brand-deep);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            transition: all 0.35s var(--t);
        }
        .value-card:hover .ic {
            background: linear-gradient(135deg, var(--brand-deep), var(--brand));
            color: var(--lime);
        }
        .value-card .ic i { width: 22px; height: 22px; }
        .value-card h4 {
            font-size: 1.05rem;
            color: var(--ink);
            margin-bottom: 8px;
            font-weight: 700;
        }
        .value-card p {
            font-size: 0.88rem;
            color: var(--text-mid);
            line-height: 1.5;
        }

        /* ABOUT — Nossa história */
        .about-section { padding: 80px 0 20px; }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.25fr;
            gap: 64px;
            align-items: start;
        }
        .about-aside h2 {
            font-size: clamp(1.75rem, 3.2vw, 2.5rem);
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin: 18px 0 16px;
        }
        .about-aside > p {
            font-size: 0.98rem;
            line-height: 1.65;
            color: var(--text-mid);
        }
        .about-aside .hero-trust {
            margin-top: 40px;
            padding-top: 28px;
            gap: 20px;
        }
        .about-aside .hero-trust .num { font-size: 1.45rem; }

        .about-prose p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-mid);
            margin-bottom: 22px;
        }
        .about-prose p:last-child { margin-bottom: 0; }
        .about-prose strong { color: var(--brand-deep); font-weight: 600; }

        .about-sign {
            margin-top: 56px;
            padding: 40px 48px;
            background: var(--bg-mid);
            border: 1px solid var(--line);
            border-radius: var(--r-xl);
            text-align: center;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(1.05rem, 1.9vw, 1.35rem);
            font-weight: 600;
            font-style: italic;
            line-height: 1.4;
            letter-spacing: -0.01em;
            color: var(--ink);
        }
        .about-sign em { color: var(--brand-deep); font-style: italic; }

        /* ABOUT — variante card (página /sobre, sem hero acima) */
        .about-section.standalone { padding-top: 120px; }
        .about-section .section-head { margin-bottom: 40px; }

        .about-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--r-xl);
            padding: 56px 48px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 16px -8px rgba(13, 64, 35, 0.08);
        }
        .about-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-deep), var(--brand-bright), var(--brand-deep));
        }
        .about-card .about-prose {
            max-width: 820px;
            margin: 0 auto;
        }
        .about-card .about-prose p {
            line-height: 1.75;
            margin-bottom: 20px;
        }
        .about-card .about-sign {
            max-width: 820px;
            margin: 36px auto 0;
            padding: 32px 0 0;
            background: none;
            border: 0;
            border-top: 1px solid var(--line);
            border-radius: 0;
            line-height: 1.35;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .hero-grid, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
            .hero-dash { transform: none; max-width: 480px; margin: 0 auto; }
            .dash-card { transform: none; }
            .svc-grid { grid-template-columns: 1fr 1fr; }
            .svc-card.featured { grid-column: span 2; }
            .process-grid { grid-template-columns: 1fr 1fr; }
            .process-grid::before { display: none; }
            .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
            .bento-card.b1, .bento-card.b2, .bento-card.b3, .bento-card.b4 { grid-column: span 2; grid-row: auto; }
            .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
            .nav-menu { display: none; }
            .lead-magnet { grid-template-columns: 1fr; padding: 40px 32px; gap: 24px; }
            .env-grid { grid-template-columns: 1fr; gap: 40px; padding: 48px 36px; }
            .env-list { grid-template-columns: 1fr 1fr; }
            .values-grid { grid-template-columns: 1fr 1fr; }
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
        }
        @media (max-width: 640px) {
            .container { padding: 0 20px; }
            .hero { padding: 50px 0 70px; }
            .section, .contact-section, .cta-section { padding: 70px 0; }
            .svc-grid { grid-template-columns: 1fr; }
            .svc-card.featured { grid-column: span 1; }
            .process-grid { grid-template-columns: 1fr; }
            .bento { grid-template-columns: 1fr; }
            .bento-card.b1, .bento-card.b2, .bento-card.b3, .bento-card.b4 { grid-column: span 1; }
            .cta-wrap { padding: 48px 24px; }
            .form-card { padding: 28px; }
            .contact-cards, .field-row { grid-template-columns: 1fr; }
            .foot-grid { grid-template-columns: 1fr; gap: 36px; }
            .services-tabs { flex-wrap: wrap; justify-content: center; padding: 6px; }
            .tab-btn { padding: 9px 14px; font-size: 0.82rem; }
            .nav-actions .btn { padding: 9px 14px; font-size: 0.82rem; }
            .nav-actions .hide-sm { display: none; }
            .float-card { display: none; }
            .wa-float span { display: none; }
            .wa-float { padding: 14px; }
            .lead-magnet { padding: 32px 24px; }
            .lead-form { flex-direction: column; padding: 16px; border-radius: var(--r); }
            .lead-form button { width: 100%; justify-content: center; padding: 12px; }
            .env-grid { padding: 36px 24px; }
            .env-list { grid-template-columns: 1fr; }
            .partner-card { width: 132px; height: 96px; }
            .mission-card, .about-card { padding: 40px 24px; }
            .about-sign { padding: 32px 24px; }
            .about-card .about-sign { padding: 32px 0 0; }
            .values-grid { grid-template-columns: 1fr; }
        }
