*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html {
            scroll-behavior: smooth;
            width: 100%; max-width: 100%; overflow-x: clip;
        }
        :root {
            --bg: #070a12;
            --surface: #0d1220;
            --surface-2: #111828;
            --border: rgba(120,160,255,.1);
            --border-strong: rgba(120,160,255,.22);
            --text: #e6ebf5;
            --muted: #8b97ad;
            --muted-2: #616d84;
            --blue: #3b82f6;
            --blue-2: #2563eb;
            --cyan: #22d3ee;
            --violet: #818cf8;
            --green: #22c55e;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            width: 100%; min-width: 0; max-width: 100%; overflow-x: clip;
            -webkit-font-smoothing: antialiased;
        }
        img { display: block; max-width: 100%; }
        h1, h2, h3, h4, .display { font-family: 'Space Grotesk', 'Inter', sans-serif; letter-spacing: -.02em; }

        /* ── Animations ── */
        @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
        @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
        .reveal { opacity: 0; }
        .reveal.in { animation: fadeUp .7s cubic-bezier(.16,1,.3,1) both; }

        /* ── Layout ── */
        .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; width: 100%; min-width: 0; }
        .gradient-text {
            background: linear-gradient(115deg, #60a5fa 0%, #22d3ee 55%, #818cf8 100%);
            -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
        }
        .eyebrow {
            display: inline-flex; align-items: center; gap: 7px;
            background: rgba(59,130,246,.08); border: 1px solid var(--border-strong);
            padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 600;
            color: #9db8f0; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px;
        }
        .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse 2s infinite; }

        /* ── Header ── */
        .header {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            padding: 12px 0; pointer-events: none;
        }
        .header-inner {
            position: relative; display: flex; justify-content: space-between; align-items: center;
            min-height: 64px; padding: 8px 10px 8px 12px; overflow: hidden;
            background: linear-gradient(135deg, rgba(13,18,32,.9), rgba(7,10,18,.82));
            border: 1px solid rgba(120,160,255,.2); border-radius: 20px;
            backdrop-filter: blur(22px) saturate(140%); -webkit-backdrop-filter: blur(22px) saturate(140%);
            box-shadow: 0 18px 50px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.04);
            pointer-events: auto;
        }
        .header-inner::before {
            content: ''; position: absolute; top: 0; left: 11%; right: 11%; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(34,211,238,.65), rgba(129,140,248,.5), transparent);
            pointer-events: none;
        }
        .logo { display: flex; align-items: center; gap: 12px; min-width: 0; text-decoration: none; }
        .logo-img {
            width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; object-fit: cover;
            border: 1px solid rgba(96,165,250,.42);
            box-shadow: 0 0 0 3px rgba(37,99,235,.08), 0 8px 24px rgba(0,0,0,.3);
        }
        .logo-text { font-family: 'Space Grotesk'; font-weight: 700; font-size: 18px; color: #fff; white-space: nowrap; letter-spacing: -.02em; }
        .logo-text span { color: var(--cyan); }
        .nav { display: flex; align-items: center; gap: 24px; }
        .nav a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; white-space: nowrap; }
        .nav a:hover { color: #fff; }
        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 11px 24px; border-radius: 50px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all .22s; cursor: pointer; border: none; white-space: nowrap; }
        .btn-primary { background: linear-gradient(120deg, #2563eb, #3b82f6); color: #fff; box-shadow: 0 4px 20px rgba(37,99,235,.28); }
        .nav .btn-primary { color: #fff; }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,99,235,.42); }
        .btn-outline { background: rgba(255,255,255,.03); color: #fff; border: 1px solid var(--border-strong); }
        .btn-outline:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.35); }
        .btn-whatsapp { background: #25d366; color: #06331a; }
        .btn-whatsapp:hover { background: #2ee372; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,.35); }
        .btn-lg { padding: 15px 34px; font-size: 16px; }
        @media (max-width: 780px) { .nav a:not(.btn) { display: none; } }

        /* ── Hero ── */
        .hero { padding: 165px 0 110px; position: relative; overflow: hidden; }
        .hero::before {
            content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
            width: 900px; height: 700px; pointer-events: none;
            background: radial-gradient(ellipse at center, rgba(37,99,235,.16) 0%, transparent 62%);
        }
        .hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
        .hero h1 { font-size: 54px; font-weight: 700; line-height: 1.06; color: #fff; margin-bottom: 22px; }
        .hero p { font-size: 18px; color: var(--muted); margin-bottom: 34px; max-width: 490px; line-height: 1.7; }
        .hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
        .hero-trust { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 28px; font-size: 13px; color: var(--muted-2); }
        .hero-trust b { color: var(--muted); font-weight: 600; }
        .trust-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--cyan); opacity: .65; flex-shrink: 0; }

        /* Detalhe técnico recolhido: quem decide quer o resultado, quem implementa abre */
        .detalhe { border: 1px solid var(--border-strong); border-radius: 16px; background: var(--surface); overflow: hidden; }
        .detalhe > summary {
            cursor: pointer; padding: 18px 24px; font-weight: 600; color: #fff; font-size: 15px;
            list-style: none; display: flex; align-items: center; gap: 10px; transition: background .2s;
        }
        .detalhe > summary::-webkit-details-marker { display: none; }
        .detalhe > summary::before { content: '+'; color: var(--cyan); font-size: 20px; line-height: 1; font-weight: 400; }
        .detalhe[open] > summary::before { content: '−'; }
        .detalhe > summary:hover { background: rgba(255,255,255,.03); }
        .detalhe > .grid { padding: 4px 20px 22px; }
        /* O observador de scroll não vê o que está recolhido: dentro da dobra o
           conteúdo nasce visível, senão abrir revelaria cards transparentes. */
        .detalhe .reveal { opacity: 1; animation: none; }

        /* Números da própria campanha — prova antes do preço */
        .numeros { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 18px; }
        .numero { text-align: center; padding: 26px 18px; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 16px; }
        .numero-valor { font-size: 40px; font-weight: 700; line-height: 1.1; margin-bottom: 6px; }
        .numero-label { font-size: 14px; color: var(--muted); }
        .numeros-foot { font-size: 13px; color: var(--muted-2); text-align: center; max-width: 640px; margin: 0 auto 40px; line-height: 1.6; }

        /* Formulário — saída de baixo compromisso para quem não abre o WhatsApp */
        .lead-form { margin-bottom: 18px; max-width: 760px; }
        .lead-form-row { display: flex; gap: 10px; flex-wrap: wrap; }
        .lead-form input {
            flex: 1 1 190px; min-width: 0; padding: 14px 16px; font: inherit; font-size: 15px;
            color: var(--text); background: rgba(255,255,255,.04);
            border: 1px solid var(--border-strong); border-radius: 12px; transition: border-color .2s, background .2s;
        }
        .lead-form input::placeholder { color: var(--muted-2); }
        .lead-form input:focus { outline: none; border-color: var(--blue); background: rgba(255,255,255,.06); }
        .lead-form input[aria-invalid="true"] { border-color: #f87171; }
        .lead-form .btn { flex: 0 0 auto; cursor: pointer; border: none; }
        .lead-form-hint { font-size: 13px; color: var(--muted-2); margin: 12px 0 0; max-width: none; }
        .lead-form-status { font-size: 14px; margin: 12px 0 0; padding: 12px 14px; border-radius: 12px; max-width: none; }
        .lead-form-status[data-tom="ok"] { color: #86efac; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.28); }
        .lead-form-status[data-tom="erro"] { color: #fca5a5; background: rgba(248,113,113,.1); border: 1px solid rgba(248,113,113,.28); }
        .lead-form[data-enviando] input, .lead-form[data-enviando] .btn { opacity: .6; pointer-events: none; }

        /* Demo card */
        .hero-demo {
            background: linear-gradient(180deg, rgba(17,24,40,.9), rgba(13,18,32,.9));
            backdrop-filter: blur(20px); border: 1px solid var(--border-strong); border-radius: 22px;
            padding: 22px; max-width: 420px; margin-left: auto; position: relative;
            box-shadow: 0 30px 70px -20px rgba(0,0,0,.6); animation: float 6s ease-in-out infinite;
        }
        .hero-demo::before { content: ''; position: absolute; inset: -1px; border-radius: 22px; padding: 1px; background: linear-gradient(140deg, rgba(34,211,238,.4), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
        .demo-head { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
        .demo-avatar { width: 38px; height: 38px; background: linear-gradient(135deg, #2563eb, #22d3ee); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
        .demo-name { color: #fff; font-weight: 600; font-size: 14px; }
        .demo-status { color: var(--green); font-size: 12px; display: flex; align-items: center; gap: 5px; }
        .demo-status .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
        .demo-msg { padding: 10px 14px; border-radius: 13px; font-size: 13px; max-width: 88%; margin-bottom: 9px; line-height: 1.5; word-wrap: break-word; }
        .demo-msg.bot { background: rgba(37,99,235,.13); border: 1px solid rgba(59,130,246,.18); color: #bcd3f7; border-bottom-left-radius: 4px; }
        .demo-msg.user { background: rgba(255,255,255,.05); color: #cbd5e1; margin-left: auto; border-bottom-right-radius: 4px; }
        .demo-msg.green { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.22); color: #86efac; }
        .demo-typing { font-size: 11px; color: var(--muted-2); padding-left: 4px; }

        /* ── Section ── */
        .section { padding: 100px 0; width: 100%; position: relative; }
        .section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
        .section-head h2 { font-size: 38px; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 16px; }
        .section-head p { font-size: 17px; color: var(--muted); }
        .divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border-strong), transparent); }

        /* ── Proof ── */
        .proof { background: linear-gradient(180deg, transparent, rgba(13,18,32,.5), transparent); }
        .proof-card {
            background: linear-gradient(135deg, var(--surface), var(--surface-2));
            border: 1px solid var(--border-strong); border-radius: 24px; padding: 44px;
            display: grid; grid-template-columns: 1.3fr 1fr; gap: 44px; align-items: center; position: relative; overflow: hidden;
        }
        .proof-card::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(34,211,238,.1), transparent 65%); pointer-events: none; }
        .proof-flag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
        .proof-card h3 { font-size: 28px; color: #fff; margin-bottom: 16px; line-height: 1.2; }
        .proof-card p { color: var(--muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 14px; }
        .proof-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
        .tag { font-size: 12px; padding: 6px 13px; border-radius: 8px; background: rgba(59,130,246,.1); border: 1px solid var(--border); color: #9db8f0; font-weight: 500; }
        .proof-visual { display: flex; flex-direction: column; gap: 14px; }
        .proof-badge { background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; }
        .proof-badge .big { font-family: 'Space Grotesk'; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 3px; }
        .proof-badge .lbl { font-size: 13px; color: var(--muted); }
        .proof-badge .big .gradient-text { font-size: 22px; }

        /* Dogfood strip */
        .dogfood { margin-top: 40px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
        .dogfood-item { text-align: center; padding: 24px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,.015); }
        .dogfood-item .ic { font-size: 26px; margin-bottom: 10px; }
        .dogfood-item h4 { color: #fff; font-size: 15px; margin-bottom: 6px; }
        .dogfood-item p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

        /* ── Capabilities grid ── */
        .grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
        .card {
            background: linear-gradient(180deg, var(--surface), rgba(13,18,32,.6));
            border: 1px solid var(--border); border-radius: 18px; padding: 30px 26px; transition: all .28s;
        }
        .card:hover { border-color: var(--border-strong); transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(37,99,235,.3); }
        .card-ic { width: 50px; height: 50px; border-radius: 13px; background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(34,211,238,.1)); border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
        .card h3 { font-size: 18px; color: #fff; margin-bottom: 10px; }
        .card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin-bottom: 16px; }
        .card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
        .card-tags span { font-size: 11.5px; padding: 4px 10px; border-radius: 6px; background: rgba(255,255,255,.03); border: 1px solid var(--border); color: var(--muted); }

        /* ── Products (two agents) ── */
        .products { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: start; }
        .product {
            border: 1px solid var(--border-strong); border-radius: 22px; padding: 36px; background: linear-gradient(180deg, var(--surface), rgba(13,18,32,.5));
            min-width: 0;
        }
        .product .kind { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--cyan); margin-bottom: 12px; }
        .product h3 { font-size: 24px; color: #fff; margin-bottom: 10px; }
        .product > p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
        .product-note { font-size: 13.5px; color: var(--muted-2); margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }

        /* Pricing tiers */
        .tiers { display: flex; flex-direction: column; gap: 12px; margin-bottom: 6px; }
        .tier { border: 1px solid var(--border); border-radius: 15px; padding: 20px; position: relative; transition: all .25s; background: rgba(255,255,255,.015); }
        .tier:hover { border-color: var(--border-strong); }
        .tier.popular { border-color: rgba(34,211,238,.4); background: linear-gradient(135deg, rgba(34,211,238,.06), rgba(37,99,235,.04)); }
        .tier-badge { position: absolute; top: -10px; right: 18px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; background: linear-gradient(120deg, #22d3ee, #3b82f6); color: #05141a; padding: 4px 11px; border-radius: 50px; }
        .tier-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; min-width: 0; }
        .tier-name { font-family: 'Space Grotesk'; font-size: 17px; font-weight: 600; color: #fff; }
        .tier-price { font-family: 'Space Grotesk'; font-size: 20px; font-weight: 700; color: #fff; }
        .tier-price small { font-size: 12px; color: var(--muted); font-weight: 500; }
        .tier-specs { font-size: 13.5px; color: var(--muted); display: flex; gap: 16px; }
        .tier-specs b { color: #cbd5e1; font-weight: 600; }
        .tiers-foot { font-size: 13px; color: var(--muted-2); line-height: 1.6; margin: 8px 2px 22px; }
        /* Interactive tiers */
        .tier { cursor: pointer; }
        .tier-head { display: flex; flex-direction: column; gap: 8px; position: relative; }
        .tier-toggle { position: absolute; top: 0; right: 0; font-size: 20px; color: var(--cyan); transition: transform .25s; line-height: 1; }
        .tier.open { border-color: rgba(34,211,238,.45); box-shadow: 0 0 0 1px rgba(34,211,238,.25), 0 14px 34px -18px rgba(34,211,238,.5); }
        .tier.open .tier-toggle { transform: rotate(45deg); }
        .tier-detail { max-height: 0; overflow: hidden; transition: max-height .32s cubic-bezier(.16,1,.3,1); }
        .tier.open .tier-detail { max-height: 420px; }
        .tier-benefits { list-style: none; margin: 16px 0 16px; display: grid; gap: 9px; }
        .tier-benefits li { font-size: 13.5px; color: #cbd5e1; display: flex; align-items: flex-start; gap: 9px; line-height: 1.5; }
        .tier-benefits li::before { content: '✓'; color: var(--cyan); font-weight: 700; flex-shrink: 0; }
        .tier-cta { width: 100%; }

        /* ── KPIs ── */
        .kpi-wrap { background: linear-gradient(135deg, var(--surface), var(--surface-2)); border: 1px solid var(--border-strong); border-radius: 24px; padding: 46px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: center; }
        .kpi-wrap h2 { font-size: 30px; color: #fff; margin-bottom: 14px; line-height: 1.2; }
        .kpi-wrap > div > p { color: var(--muted); font-size: 15.5px; line-height: 1.7; }
        .kpi-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
        .kpi { display: flex; align-items: center; gap: 11px; padding: 13px 16px; border: 1px solid var(--border); border-radius: 12px; background: rgba(255,255,255,.015); font-size: 14px; color: #cbd5e1; }
        .kpi .k-dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(120deg, #22d3ee, #3b82f6); flex-shrink: 0; }

        /* ── Process ── */
        .steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
        .step { padding: 30px; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.015); position: relative; }
        .step-num { font-family: 'Space Grotesk'; font-size: 44px; font-weight: 700; line-height: 1; margin-bottom: 16px; }
        .step h3 { font-size: 18px; color: #fff; margin-bottom: 10px; }
        .step p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }

        /* ── FAQ ── */
        .faq { max-width: 760px; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-q { width: 100%; text-align: left; background: none; border: none; color: #fff; font-size: 16.5px; font-weight: 600; font-family: 'Space Grotesk'; padding: 22px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
        .faq-q .plus { font-size: 22px; color: var(--cyan); transition: transform .25s; flex-shrink: 0; }
        .faq-item.open .plus { transform: rotate(45deg); }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; color: var(--muted); font-size: 15px; line-height: 1.7; }
        .faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

        /* ── CTA ── */
        .cta { text-align: center; position: relative; overflow: hidden; }
        .cta-box { background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(34,211,238,.08)); border: 1px solid var(--border-strong); border-radius: 28px; padding: 64px 40px; position: relative; overflow: hidden; }
        .cta-box::before { content: ''; position: absolute; top: -60%; left: 50%; transform: translateX(-50%); width: 600px; height: 500px; background: radial-gradient(ellipse, rgba(34,211,238,.15), transparent 65%); pointer-events: none; }
        .cta-box h2 { font-size: 40px; color: #fff; margin-bottom: 16px; line-height: 1.1; position: relative; }
        .cta-box p { font-size: 17px; color: var(--muted); max-width: 520px; margin: 0 auto 32px; position: relative; }

        /* ── Footer ── */
        .footer { border-top: 1px solid var(--border); padding: 40px 0; }
        .footer .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
        .footer p { color: var(--muted-2); font-size: 13.5px; }
        .footer-links { display: flex; gap: 22px; }
        .footer-links a { color: var(--muted); font-size: 13.5px; text-decoration: none; transition: color .2s; }
        .footer-links a:hover { color: #fff; }

        /* Secondary services */
        .services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 820px; margin: 0 auto; gap: 20px; }
        .card, .step, .dogfood-item, .proof-card, .proof-badge, .kpi-wrap, .kpi { min-width: 0; }

        /* Floating WhatsApp */
        .float-wa { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; font-size: 28px; text-decoration: none; z-index: 90; box-shadow: 0 10px 30px rgba(37,211,102,.4); transition: transform .2s; }
        .float-wa:hover { transform: scale(1.08); }
        .measurement-consent { position: fixed; left: 18px; bottom: 18px; z-index: 120; width: min(420px, calc(100% - 110px)); display: flex; flex-direction: column; align-items: stretch; gap: 12px; padding: 15px 17px; border: 1px solid var(--border-strong); border-radius: 14px; background: rgba(13,18,32,.98); box-shadow: 0 20px 55px rgba(0,0,0,.55); }
        .measurement-consent[hidden] { display: none; }
        .measurement-consent p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
        .measurement-consent strong { color: var(--text); }
        .measurement-consent-actions { display: flex; align-items: center; justify-content: flex-end; gap: 9px; flex-shrink: 0; }
        .measurement-consent button { border: 1px solid var(--border-strong); border-radius: 10px; padding: 10px 13px; color: var(--text); background: transparent; font: inherit; font-size: 12.5px; font-weight: 600; cursor: pointer; }
        .measurement-consent .consent-accept { border-color: var(--blue); background: var(--blue); color: #fff; }
        .consent-settings { border: 0; padding: 0; color: var(--muted); background: transparent; font: inherit; font-size: 13.5px; cursor: pointer; }
        .consent-settings:hover { color: #fff; }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .hero .container, .proof-card, .kpi-wrap { grid-template-columns: 1fr; }
            .hero-demo { margin: 0 auto; }
            .grid, .steps, .dogfood { grid-template-columns: 1fr; }
            .products { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 40px; }
            .section-head h2, .cta-box h2 { font-size: 30px; }
            .proof-card, .kpi-wrap { padding: 32px; }
            .kpi-list { grid-template-columns: 1fr; }
            .lead-form { max-width: none; }
            .lead-form-row { flex-direction: column; }
            .lead-form .btn { width: 100%; }
            .numeros { grid-template-columns: 1fr; gap: 12px; }
            .numero { padding: 20px 16px; }
            .numero-valor { font-size: 34px; }
        }
        @media (max-width: 600px) {
            .container { padding-left: 18px; padding-right: 18px; }
            .header { padding-top: 8px; }
            .header-inner { min-height: 58px; padding: 6px 7px 6px 8px; border-radius: 17px; }
            .logo-img { width: 44px; height: 44px; }
            .logo-text { font-size: 16px; }
            .nav { gap: 8px; }
            .nav .btn { padding: 10px 16px; font-size: 13px; }
            .hero { padding-top: 134px; }
            .hero-trust { align-items: flex-start; flex-direction: column; gap: 5px; }
            .trust-sep { display: none; }
            .product { padding: 28px 20px; }
            .tier { padding: 18px 16px; }
            .tier-top { align-items: flex-start; flex-direction: column; gap: 2px; padding-right: 28px; }
            .tier-specs { flex-direction: column; gap: 2px; }
            .proof-card, .kpi-wrap { padding: 26px 20px; }
            .cta-box { padding: 48px 20px; }
            .float-wa { right: 18px; bottom: 18px; }
            .measurement-consent { bottom: 12px; left: 12px; width: calc(100% - 96px); gap: 11px; padding: 14px; }
        }
        @media (max-width: 370px) {
            .logo-text { display: none; }
        }

/* ===== Específico da landing /chatgpt-ads ===== */
/* O cabeçalho é fixo: sem isso o título da seção some atrás dele ao clicar no menu. */
section[id] { scroll-margin-top: 104px; }
.alerta { border-color: rgba(251,191,36,.28); background: linear-gradient(180deg, rgba(251,191,36,.06), transparent); }
.alerta .card-ic { background: rgba(251,191,36,.12); }
.limites { border: 1px solid var(--border-strong); border-radius: 18px; padding: 28px; background: var(--surface); }
.limites ul { list-style: none; margin: 0; padding: 0; }
.limites li { position: relative; padding: 14px 0 14px 34px; border-bottom: 1px solid var(--border); color: var(--text); }
.limites li:last-child { border-bottom: 0; }
.limites li::before { content: "—"; position: absolute; left: 6px; top: 14px; color: var(--muted); font-weight: 700; }
.limites li b { color: #e6ebf5; }
.limites-foot { margin: 18px 0 0; color: var(--muted); font-size: 14px; }
.preco-box { text-align: center; border: 1px solid var(--border-strong); border-radius: 18px; padding: 34px 24px; background: var(--surface); }
.preco-box .valor { font-family: 'Space Grotesk', 'Inter', sans-serif; font-size: 30px; font-weight: 700; margin: 0 0 8px; }
.preco-box p { color: var(--muted); margin: 0 auto 22px; max-width: 560px; }
.disclaimer { margin-top: 22px; color: var(--muted); font-size: 12.5px; line-height: 1.7; max-width: 720px; }
.card code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .92em; background: rgba(120,160,255,.1); border: 1px solid var(--border); border-radius: 6px; padding: 1px 6px; color: #9db8f0; }

/* Amostra do formato de anúncio no hero */
.ad-card { display: flex; gap: 14px; align-items: flex-start; margin-top: 12px; padding: 14px; border: 1px solid var(--border-strong); border-radius: 15px; background: rgba(37,99,235,.07); }
.ad-img { width: 62px; height: 62px; flex-shrink: 0; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; color: #fff; letter-spacing: .04em; background: linear-gradient(135deg, #2563eb, #22d3ee); }
.ad-body { min-width: 0; }
.ad-tag { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); font-weight: 600; margin-bottom: 4px; }
.ad-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 14.5px; color: #fff; line-height: 1.3; }
.ad-text { font-size: 12.5px; color: var(--muted); line-height: 1.5; margin-top: 3px; }
.ad-url { font-size: 11.5px; color: #9db8f0; margin-top: 7px; }
.ad-limits { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); font-size: 11.5px; color: var(--muted-2); text-align: center; }
@media (max-width: 600px) {
  .limites { padding: 20px; }
  .preco-box { padding: 26px 18px; }
}
/* Em telas muito estreitas o .btn herdado é nowrap: o min-content dele (308px)
   estica o bloco além do container (284px) e corta o texto ao lado. */
@media (max-width: 400px) {
  .hero-buttons { width: 100%; }
  .hero-buttons .btn-lg,
  .preco-box .btn-lg,
  .lead-form .btn-lg,
  #cta-final .btn-lg { white-space: normal; text-align: center; padding: 14px 20px; font-size: 15px; }
  .lead-form-row { flex-direction: column; }
  .lead-form .btn { width: 100%; }
}

/* tabelas das paginas de conteudo */
.mxp-table{width:100%;border-collapse:collapse;font-size:.97rem}
.mxp-table th,.mxp-table td{padding:14px 18px;text-align:left;border-bottom:1px solid rgba(255,255,255,.08);vertical-align:top}
.mxp-table thead th{background:rgba(255,255,255,.04);font-family:'Space Grotesk',Inter,sans-serif;font-weight:600;letter-spacing:.01em}
.mxp-table tbody tr:last-child td{border-bottom:none}
.mxp-table td:first-child{font-weight:600}
@media (max-width:640px){.mxp-table th,.mxp-table td{padding:11px 12px;font-size:.9rem}}
.breadcrumb{font-size:.9rem;opacity:.7;margin-bottom:18px}
.breadcrumb a{color:inherit;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.2)}
.breadcrumb a:hover{opacity:1}
.leia-tambem{display:flex;flex-wrap:wrap;gap:12px;margin-top:20px}
.leia-tambem a{display:inline-block;padding:10px 16px;border:1px solid rgba(255,255,255,.14);border-radius:999px;text-decoration:none;color:inherit;font-size:.93rem}
.leia-tambem a:hover{border-color:rgba(255,255,255,.4)}
