/* =====================================================
   Essentials — Landing v2 (alta conversão / modern SaaS)
   Inspirado em hierarquia visual profissional (brand guidelines)
   ===================================================== */

:root {
    /* Paleta Essentials — cinza frio + azul */
    --primary: #4F6FDB;
    --primary-dark: #3B5DBD;
    --primary-light: #93B4F5;
    --primary-50: #D6E4F7;
    --primary-border: #A8C4E8;
    --primary-glow: rgba(59, 99, 189, .32);

    --accent: #3B82F6;
    --accent-50: #DBEAFE;
    --accent-warm: #64748B;
    --accent-warm-50: #E2E8F0;

    --navy: #1E293B;
    --navy-800: #334155;
    --text: #1E293B;
    --muted: #64748B;
    --line: #E2E8F0;
    --bg: #FFFFFF;
    --bg-soft: #F8FAFC;
    --bg-muted: #F1F5F9;
    --surface: #FFFFFF;
    --surface-glass: rgba(255, 255, 255, .94);

    --radius-sm: 10px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --pill: 999px;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
    --shadow: 0 12px 32px rgba(15, 23, 42, .08);
    --shadow-lg: 0 24px 48px rgba(15, 23, 42, .12);
    --shadow-glow: 0 0 0 1px rgba(59, 99, 189, .12), 0 20px 40px var(--primary-glow);

    --container: 1200px;
    --pad-x: clamp(16px, 4vw, 28px);
    --header-h: 72px;

    --font: 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-display: 'Outfit', var(--font);

    /* aliases legados */
    --c-primary: var(--primary);
    --c-primary-600: var(--primary-dark);
    --c-primary-50: var(--primary-50);
    --c-accent: var(--accent);
    --c-accent-50: var(--accent-50);
    --c-dark: var(--navy);
    --c-text: var(--text);
    --c-muted: var(--muted);
    --c-line: var(--line);
    --c-bg: var(--bg);
    --c-bg-soft: var(--bg-soft);
    --radius-pill: var(--pill);
}

*, *::before, *::after { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}
body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    letter-spacing: -.03em;
    color: var(--navy);
    margin: 0 0 .45em;
    line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1rem; }
.muted { color: var(--muted); }

.container {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding-inline: var(--pad-x);
    max-width: 100%;
}

section { padding: clamp(64px, 9vw, 120px) 0; }

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(36px, 5vw, 60px);
}
.section-head .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--pill);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: var(--primary-50);
    border: 1px solid var(--primary-border);
    margin-bottom: 16px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------- Botões (CTA hierarchy) ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    min-height: 44px;
    border-radius: var(--pill);
    font-weight: 600;
    font-size: .95rem;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    line-height: 1;
    max-width: 100%;
}
.btn-sm { padding: 9px 16px; font-size: .88rem; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(59,99,189,.15), 0 24px 48px var(--primary-glow);
}
.btn-outline {
    background: var(--surface);
    color: var(--text);
    border-color: var(--line);
}
.btn-outline:hover { border-color: #94A3B8; background: var(--bg-muted); }
.btn-ghost { color: var(--text); }
.btn-ghost:hover { background: var(--bg-muted); }
.btn-glass {
    background: var(--surface-glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    color: var(--navy);
}
.btn-glass:hover { background: var(--surface); border-color: #94A3B8; }
.btn-dark { background: var(--navy); color: #fff; }

/* ---------- Promo bar ---------- */
.promo-bar {
    background: linear-gradient(90deg, var(--navy) 0%, #334155 50%, var(--primary-dark) 100%);
    color: #fff;
    font-size: .88rem;
    position: relative;
    z-index: 51;
}
.promo-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 10px var(--pad-x);
    text-align: center;
}
.promo-inner p { margin: 0; }
.promo-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 0 0 0 rgba(59,99,189,.5);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(59,99,189,.45); }
    70% { box-shadow: 0 0 0 10px rgba(59,99,189,0); }
    100% { box-shadow: 0 0 0 0 rgba(59,99,189,0); }
}
.promo-link {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.promo-link:hover { opacity: .9; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--surface-glass);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: border-color .2s, box-shadow .2s;
}
.site-header .header-inner { position: relative; }
.site-header.scrolled {
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: var(--header-h);
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}
.logo-mark {
    width: 38px; height: 38px;
    border-radius: 11px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: 0 8px 20px var(--primary-glow);
}
.nav { display: flex; gap: 28px; }
.nav a {
    font-size: .92rem;
    font-weight: 500;
    color: var(--muted);
    transition: color .15s;
}
.nav a:hover { color: var(--primary); }
.header-cta { display: flex; gap: 8px; align-items: center; }
.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
.menu-toggle span {
    display: block; width: 18px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-cta {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
    margin-top: 8px;
    border-top: 1px solid var(--line);
}
.nav-mobile-cta .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding-top: clamp(48px, 7vw, 88px);
    padding-bottom: clamp(48px, 6vw, 72px);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    contain: strict;
}
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #EEF4FC 0%, #F8FAFC 45%, #E8EEF9 100%);
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.35) 0%, rgba(241,245,249,.55) 100%);
}

/* Caneta branca decorativa (parallax leve no scroll) */
.hero-pen {
    position: absolute;
    z-index: 2;
    top: clamp(-30px, -2vw, 0px);
    right: clamp(2%, 6vw, 9%);
    width: clamp(120px, 14vw, 190px);
    transform: translate3d(0, 0, 0) rotate(-34deg);
    transform-origin: 50% 20%;
    opacity: 1;
    contain: layout style;
    backface-visibility: hidden;
}
.hero-pen-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Assinatura estática (sem animação no scroll) */
.hero-signature {
    position: absolute;
    z-index: 1;
    right: clamp(-4%, 2vw, 6%);
    top: clamp(120px, 16vw, 220px);
    width: clamp(320px, 38vw, 560px);
    height: auto;
    opacity: .85;
    pointer-events: none;
}
.hero-signature path {
    stroke: var(--primary-light);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 220;
}
.hero-orb,
.hero-grid {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}
.hero-orb {
    border-radius: 50%;
    opacity: 1;
}
.hero-orb-1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(147, 180, 245, .45) 0%, rgba(147, 180, 245, 0) 68%);
    top: -120px; right: -80px;
}
.hero-orb-2 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(203, 213, 225, .35) 0%, rgba(203, 213, 225, 0) 68%);
    bottom: -80px; left: -60px;
}
.hero-grid {
    inset: 0;
    opacity: .55;
    background-image:
        linear-gradient(rgba(148,163,184,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148,163,184,.06) 1px, transparent 1px);
    background-size: 48px 48px;
}
.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 32px);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
}
.hero-bottom {
    display: grid;
    gap: clamp(16px, 2.5vw, 24px);
}
.hero-trust .trust-grid,
.hero-bottom .trust-grid {
    margin-top: 0;
}
.hero-metrics .metrics-grid {
    margin: 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 10px;
    border-radius: var(--pill);
    background: var(--surface);
    border: 1px solid var(--line);
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}
.hero-tag .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
}
.hero-tag .dot.pulse { animation: pulse 2s infinite; }
.hero h1 .accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 55%, #60A5FA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero .lead {
    font-size: 1.14rem;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.65;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-checks { display: grid; gap: 10px; }
.hero-checks li {
    display: flex; align-items: center; gap: 10px;
    font-size: .94rem;
}
.hero-checks li::before {
    content: "✓";
    width: 22px; height: 22px;
    border-radius: 6px;
    background: var(--accent-50);
    color: var(--accent);
    display: grid; place-items: center;
    font-size: .75rem; font-weight: 800;
    flex-shrink: 0;
}

/* Hero panel (dashboard mock) */
.hero-panel {
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-lg);
}
.hero-panel-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.hero-panel-head strong { font-family: var(--font-display); font-size: 1rem; }
.hero-panel-head small { margin-left: auto; color: var(--muted); font-size: .8rem; }
.live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}
.h-stat {
    background: var(--bg-muted);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
}
.h-stat small { display: block; font-size: .72rem; color: var(--muted); margin-bottom: 4px; }
.h-stat strong { font-family: var(--font-display); font-size: 1rem; }
.h-stat strong.ok { color: var(--accent); }
.h-stat strong.accent-num { color: var(--primary); }
.hero-feed { display: grid; gap: 10px; margin-bottom: 16px; }
.feed-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px;
    background: var(--bg-muted);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.feed-ico {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: grid; place-items: center;
    font-size: .72rem; font-weight: 800;
    flex-shrink: 0;
}
.feed-ico.green { background: var(--accent-50); color: var(--accent); }
.feed-ico.blue { background: var(--primary-50); color: var(--primary); }
.feed-ico.amber { background: #FEF3C7; color: #B45309; }
.feed-item strong { display: block; font-size: .88rem; }
.feed-item small { color: var(--muted); font-size: .76rem; }
.hero-panel-cta {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
    transition: transform .15s, box-shadow .2s;
}
.hero-panel-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

/* ---------- Trust strip (hero) ---------- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 20px 24px;
    box-shadow: var(--shadow);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trust-ico { font-size: 1.4rem; flex-shrink: 0; }
.trust-item strong { display: block; font-size: .88rem; color: var(--navy); }
.trust-item small { color: var(--muted); font-size: .76rem; }

/* ---------- Métricas (hero) ---------- */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.metric.glass {
    text-align: center;
    padding: 28px 20px;
    background: var(--surface-glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: transform .2s, box-shadow .2s;
}
.metric.glass:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.metric .num {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    background: linear-gradient(135deg, var(--navy), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.metric .lbl { color: var(--muted); font-size: .9rem; margin-top: 4px; }

/* ---------- Cards / Soluções ---------- */
.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}
.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(59,99,189,.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .25s;
    pointer-events: none;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--primary-border);
}
.card:hover::after { opacity: 1; }
.card .ico-bg {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: grid; place-items: center;
    background: var(--primary-50);
    color: var(--primary);
}
.card.green .ico-bg { background: var(--accent-50); color: var(--accent); }
.card.amber .ico-bg { background: #FEF3C7; color: #B45309; }
.card h3 { margin: 0; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }
.card .card-link {
    margin-top: auto;
    font-weight: 700;
    color: var(--primary);
    font-size: .92rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.card .card-link:hover { gap: 10px; }

/* ---------- Serviços ---------- */
.servicos {
    position: relative;
    background: var(--bg-soft);
    overflow: hidden;
}
.servicos::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/section-bg.jpg') center center / cover no-repeat;
    opacity: .62;
    pointer-events: none;
}
.servicos::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.4) 0%, rgba(248,250,252,.7) 100%);
    pointer-events: none;
}
.servicos > .container { position: relative; z-index: 1; }
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.servico-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.servico-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}
.servico-card[data-dept="contabil"]::before { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
.servico-card[data-dept="fiscal"]::before { background: linear-gradient(90deg, var(--accent), #60A5FA); }
.servico-card[data-dept="pessoal"]::before { background: linear-gradient(90deg, #64748B, #94A3B8); }
.servico-card[data-dept="societario"]::before { background: linear-gradient(90deg, #475569, #94A3B8); }
.servico-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.servico-head { display: flex; align-items: center; gap: 14px; }
.servico-head > div { flex: 1; }
.servico-letra {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    background: var(--primary-50);
    color: var(--primary);
    flex-shrink: 0;
}
.servico-card[data-dept="fiscal"] .servico-letra { background: var(--accent-50); color: var(--accent); }
.servico-card[data-dept="pessoal"] .servico-letra { background: #E2E8F0; color: #475569; }
.servico-card[data-dept="societario"] .servico-letra { background: #F1F5F9; color: #475569; }
.servico-eyebrow {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
}
.servico-ico {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--bg-muted);
    display: grid; place-items: center;
    color: var(--muted);
}
.servico-list { display: grid; gap: 10px; }
.servico-list li {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: .93rem; line-height: 1.5;
}
.servico-list li::before {
    content: "";
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%233B82F6' d='m9 16.2-3.5-3.5L4 14.3 9 19l11-11-1.4-1.4Z'/%3E%3C/svg%3E") center/14px no-repeat var(--accent-50);
    border-radius: 50%;
}
.servico-list li.opt { color: var(--muted); }
.servico-list li.opt::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2364748B' d='M19 13H5v-2h14v2Z'/%3E%3C/svg%3E") center/12px no-repeat var(--bg-muted);
}
.servico-list li.opt em {
    font-style: normal;
    font-size: .78rem;
    background: var(--bg-muted);
    padding: 2px 8px;
    border-radius: var(--pill);
    margin-left: 4px;
}
.servico-destaque {
    margin-top: auto;
    padding: 14px 16px;
    border-radius: var(--radius);
    background: var(--bg-soft);
    border: 1px dashed #CBD5E1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.servico-destaque strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--navy);
}
.servico-destaque strong span { font-size: .8rem; color: var(--muted); font-weight: 500; }
.servico-destaque small { display: block; color: var(--muted); font-size: .78rem; }
.badge-tag {
    font-size: .76rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: var(--pill);
    background: var(--primary-50);
    color: var(--primary-dark);
    border: 1px solid var(--primary-border);
}
.servicos-cta {
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.servicos-cta p { margin: 0; color: var(--muted); }

/* ---------- Seções alternadas (azul / branco com sombra) ---------- */
.section-tone {
    background: linear-gradient(180deg, #1E293B 0%, #334155 42%, #3B5DBD 100%);
    color: #E2E8F0;
}
.section-tone .section-head h2 { color: #fff; }
.section-tone .section-head p { color: rgba(255, 255, 255, .78); }
.section-tone .section-head .eyebrow {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .18);
    color: #BFDBFE;
}
.section-tone .contato-info h3 { color: #fff; }
.section-tone .contato-info > p { color: rgba(255, 255, 255, .78); }
.section-tone .contato-info small { color: rgba(255, 255, 255, .65); }
.section-tone .contato-info .ico-bg {
    background: rgba(255, 255, 255, .12);
    color: #BFDBFE;
}

/* Texto preto nas caixas brancas dentro de seções azuis */
.section-tone :is(
    .card,
    .step,
    .servico-card,
    .plano:not(.featured),
    .faq-item,
    .compare-wrap,
    .depo-card:not(.is-featured),
    .wa-chat
) {
    color: var(--text);
}
.section-tone :is(
    .card,
    .step,
    .servico-card,
    .plano:not(.featured),
    .faq-item,
    .compare-row,
    .depo-card:not(.is-featured)
) :is(h1, h2, h3, h4, strong, .faq-q) {
    color: var(--navy);
}
.section-tone :is(
    .card,
    .step,
    .servico-card,
    .plano:not(.featured),
    .faq-item,
    .compare-row,
    .depo-card:not(.is-featured)
) :is(p, small, li, blockquote, .faq-a, .servico-eyebrow, .servico-list li) {
    color: var(--muted);
}
.section-tone .compare-wrap .compare-head {
    color: #fff;
}
.section-tone .compare-wrap .compare-head .ours-head {
    color: #93C5FD;
}
.section-tone .compare-row .ours {
    color: var(--accent);
}
.section-tone .card .card-link,
.section-tone .plano:not(.featured) ul li::before {
    color: var(--primary);
}
.section-tone .wa-chat-head,
.section-tone .wa-chat-head strong,
.section-tone .wa-chat-head small {
    color: #fff;
}
.section-tone .wa-chat-foot input {
    color: var(--text);
}
.section-tone .wa-chat-foot input::placeholder {
    color: var(--muted);
}

.section-light {
    background: #fff;
    box-shadow:
        0 -12px 40px rgba(15, 23, 42, .06),
        0 12px 40px rgba(15, 23, 42, .06);
    position: relative;
    z-index: 1;
}
.servicos.section-light::before,
.servicos.section-light::after { display: none; }
.servicos.section-light { background: #fff; overflow: visible; }

.section-light .slider-dot { background: #CBD5E1; }
.section-light .slider-dot:hover { background: #94A3B8; }
.section-light .slider-dot.active { background: var(--primary); }
.section-light .depo-cta p { color: var(--muted); }

.cta-final.section-light {
    background: #fff;
    color: var(--text);
    box-shadow:
        0 -12px 40px rgba(15, 23, 42, .06),
        0 12px 40px rgba(15, 23, 42, .06);
}
.cta-final.section-light::before { display: none; }
.cta-final.section-light h2 { color: var(--navy); max-width: 640px; }
.cta-final.section-light p { color: var(--muted); max-width: 520px; }
.cta-final.section-light .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.cta-final.section-light .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}
.cta-final.section-light .btn-outline {
    background: var(--surface);
    color: var(--text);
    border-color: var(--line);
}
.cta-final.section-light .btn-outline:hover { background: var(--bg-muted); }

/* ---------- Steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    counter-reset: step;
}
.step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
}
.step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .8rem;
    color: var(--primary);
    background: var(--primary-50);
    padding: 5px 12px;
    border-radius: var(--pill);
    display: inline-block;
    margin-bottom: 14px;
}
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); font-size: .93rem; }

/* ---------- Comparativo ---------- */
.compare-wrap {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--surface);
}
.compare-head, .compare-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: center;
}
.compare-head { background: var(--navy); color: #fff; }
.compare-head .title { font-weight: 700; }
.compare-head .ours-head { color: #93C5FD; }
.compare-head > div, .compare-row > div { padding: 18px 22px; }
.compare-head > div + div, .compare-row > div + div { border-left: 1px solid var(--line); }
.compare-head > div + div { border-color: rgba(255,255,255,.1); }
.compare-row { border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: 0; }
.compare-row .market { color: var(--muted); text-decoration: line-through; text-decoration-color: #FCA5A5; }
.compare-row .ours {
    color: var(--accent);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}
.compare-row .ours::before {
    content: "✓";
    width: 20px; height: 20px;
    background: var(--accent-50);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: .7rem;
}

/* ---------- Planos ---------- */
.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.planos-grid-spaced { margin-bottom: clamp(32px, 6vw, 60px); }
.plano {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .2s, box-shadow .2s;
}
.plano:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plano .badge {
    align-self: flex-start;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--pill);
    background: var(--bg-muted);
    color: var(--muted);
}
.plano h3 { font-size: 1.35rem; margin: 0; }
.plano .preco-prefix {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted);
    margin-bottom: -8px;
}
.plano .preco {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.plano .preco small { font-size: .85rem; color: var(--muted); font-weight: 500; }
.plano .preco.preco-texto { font-size: 1.75rem; margin-top: 8px; }
.plano ul { display: grid; gap: 10px; }
.plano ul li {
    display: flex; gap: 10px; font-size: .93rem;
}
.plano ul li::before {
    content: "✓"; color: var(--accent); font-weight: 800;
}
.plano.featured {
    background: linear-gradient(160deg, var(--navy) 0%, #334155 45%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-lg), 0 0 60px var(--primary-glow);
    transform: scale(1.03);
    z-index: 1;
}
.plano.featured:hover { transform: scale(1.03) translateY(-4px); }
.plano.featured h3, .plano.featured .preco { color: #fff; }
.plano.featured .preco-prefix, .plano.featured .preco small { color: rgba(255,255,255,.8); }
.plano.featured p, .plano.featured p.muted { color: rgba(255,255,255,.9) !important; }
.plano.featured ul li { color: #E2E8F0; }
.plano.featured ul li::before { color: #93C5FD; }
.plano.featured .badge { background: rgba(255,255,255,.15); color: #fff; }
.plano.featured .btn-outline {
    background: var(--primary-50);
    color: var(--primary-dark);
    border-color: var(--primary-border);
}
.plano .plano-btn { margin-top: auto; width: 100%; }
.plano.featured .badge-light {
    background: rgba(255,255,255,.18);
    color: #fff;
}
.eyebrow-dark {
    background: rgba(255,255,255,.15) !important;
    border-color: rgba(255,255,255,.25) !important;
    color: #fff !important;
    margin-bottom: 16px;
}

/* ---------- Depoimentos (slider escuro) ---------- */
.depoimentos {
    position: relative;
    overflow: hidden;
}
.depoimentos-dark {
    background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
}
.depoimentos-dark::before,
.depoimentos-dark::after { display: none; }
.depoimentos > .container { position: relative; z-index: 1; }

.section-head-light h2 { color: #fff; }
.section-head-light p { color: rgba(255,255,255,.78); }
.section-head-light .eyebrow {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
    color: #93C5FD;
}

.reviews-slider {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 16px);
    margin-top: 8px;
}
.slider-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.slider-track {
    display: flex;
    gap: 20px;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.slider-btn {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: #fff;
    display: grid;
    place-items: center;
    transition: background .2s, border-color .2s, opacity .2s, transform .15s;
}
.slider-btn:hover:not(:disabled) {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.35);
    transform: scale(1.04);
}
.slider-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.depo-card {
    flex: 0 0 100%;
    min-width: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    user-select: none;
}
.depo-card.is-featured {
    background: linear-gradient(160deg, #334155 0%, var(--primary-dark) 100%);
    border-color: rgba(255,255,255,.12);
    color: #fff;
}
.depo-stars { color: #FBBF24; font-size: 1rem; letter-spacing: 2px; }
.depo-card blockquote {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    flex: 1;
}
.depo-card.is-featured blockquote { color: rgba(255,255,255,.92); }
.depo-card footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.depo-card.is-featured footer { border-top-color: rgba(255,255,255,.15); }
.depo-avatar {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: grid; place-items: center;
    font-weight: 800;
    font-size: .85rem;
    flex-shrink: 0;
}
.depo-card footer strong { display: block; font-size: .92rem; }
.depo-card footer small { color: var(--muted); font-size: .8rem; }
.depo-card.is-featured footer small { color: rgba(255,255,255,.75); }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255,255,255,.25);
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.slider-dot:hover { background: rgba(255,255,255,.45); }
.slider-dot.active {
    background: var(--primary-light);
    transform: scale(1.2);
}

.depo-cta {
    margin-top: 44px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.depo-cta p { margin: 0; color: rgba(255,255,255,.7); font-size: 1.05rem; }
.depoimentos-dark .depo-cta .btn-primary {
    box-shadow: 0 12px 32px rgba(59,99,189,.4);
}

@media (min-width: 640px) {
    .depo-card { flex: 0 0 calc(50% - 10px); }
}
@media (min-width: 1024px) {
    .depo-card { flex: 0 0 calc(33.333% - 13.333px); }
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
    border-color: var(--primary-border);
    box-shadow: var(--shadow-sm);
}
.faq-q {
    width: 100%;
    text-align: left;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
}
.faq-q .chev {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--bg-muted);
    display: grid; place-items: center;
    transition: transform .2s, background .2s;
    flex-shrink: 0;
}
.faq-item[open] .faq-q .chev {
    transform: rotate(180deg);
    background: var(--primary-50);
    color: var(--primary);
}
.faq-a { padding: 0 22px 22px; color: var(--muted); font-size: .95rem; line-height: 1.65; }

/* ---------- CTA final ---------- */
.cta-final {
    background: var(--navy) url('../images/cta-bg.jpg') center center / cover no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(30,41,59,.7) 0%, rgba(51,65,85,.6) 50%, rgba(59,99,189,.5) 100%),
        radial-gradient(circle at 20% 50%, rgba(96,165,250,.22), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(148,163,184,.18), transparent 40%);
    pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 { color: #fff; max-width: 640px; }
.cta-final p { color: rgba(255,255,255,.88); max-width: 520px; margin-bottom: 0; }
.cta-final .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.cta-final .btn-primary {
    background: var(--primary-50);
    color: var(--primary-dark);
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.cta-final .btn-primary:hover { background: #BFDBFE; }
.cta-final .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.4);
}
.cta-final .btn-outline:hover { background: rgba(255,255,255,.1); }

/* ---------- Contato ---------- */
.contato-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(28px, 5vw, 56px);
    align-items: start;
}
.contato-info h3 { margin-bottom: 12px; }
.contato-info > p { color: var(--muted); }
.contato-info .info-list { display: grid; gap: 14px; margin-top: 24px; }
.contato-info .info-list li { display: flex; gap: 14px; }
.contato-info .ico-bg {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--primary-50);
    color: var(--primary);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.contato-info small { color: var(--muted); }
/* ---------- Chat estilo WhatsApp ---------- */
.wa-chat {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-xl);
    overflow: visible;
    margin-top: 14px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    background: #ECE5DD;
}
.wa-chat::before {
    content: "Grátis · Sem compromisso";
    position: absolute;
    top: -13px; right: 24px;
    z-index: 5;
    background: #25D366;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 6px 12px;
    border-radius: var(--pill);
}
.wa-chat-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #075E54;
    color: #fff;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
}
.wa-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
}
.wa-head-info { flex: 1; min-width: 0; line-height: 1.3; }
.wa-head-info strong {
    display: block;
    font-size: .98rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wa-head-info small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .76rem;
    opacity: .85;
}
.wa-online-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 0 0 0 rgba(37,211,102,.5);
    animation: pulse 2s infinite;
}
.wa-head-ico {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    transition: background .15s, transform .15s;
}
.wa-head-ico:hover {
    background: rgba(255, 255, 255, .28);
    transform: scale(1.05);
}
.wa-head-ico svg {
    display: block;
    width: 22px;
    height: 22px;
}

.wa-chat-body {
    flex: 1;
    min-height: 360px;
    max-height: 430px;
    overflow-y: auto;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background:
        radial-gradient(circle at 18% 12%, rgba(7,94,84,.05) 0 2px, transparent 3px),
        radial-gradient(circle at 72% 38%, rgba(7,94,84,.05) 0 2px, transparent 3px),
        radial-gradient(circle at 40% 70%, rgba(7,94,84,.05) 0 2px, transparent 3px),
        #ECE5DD;
    background-size: 90px 90px, 110px 110px, 70px 70px, auto;
}
.wa-chat-date {
    align-self: center;
    background: #DDE7EE;
    color: #5B6B79;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 4px;
}
.wa-msg {
    position: relative;
    max-width: 82%;
    padding: 9px 12px 7px;
    border-radius: 10px;
    font-size: .92rem;
    line-height: 1.45;
    box-shadow: 0 1px 1px rgba(15,23,42,.12);
    animation: waMsgIn .28s ease both;
}
@keyframes waMsgIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.wa-msg--bot {
    align-self: flex-start;
    background: #fff;
    border-top-left-radius: 2px;
}
.wa-msg--user {
    align-self: flex-end;
    background: #DCF8C6;
    border-top-right-radius: 2px;
}
.wa-msg-time {
    display: block;
    text-align: right;
    font-size: .66rem;
    color: #94A3B8;
    margin-top: 3px;
}
.wa-msg--user .wa-msg-time { color: #7BA05B; }

.wa-typing {
    align-self: flex-start;
    background: #fff;
    border-radius: 10px;
    border-top-left-radius: 2px;
    padding: 12px 14px;
    display: inline-flex;
    gap: 5px;
    box-shadow: 0 1px 1px rgba(15,23,42,.12);
}
.wa-typing span {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #B0BEC5;
    animation: waTyping 1.1s infinite ease-in-out;
}
.wa-typing span:nth-child(2) { animation-delay: .18s; }
.wa-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes waTyping {
    0%, 60%, 100% { transform: translateY(0); opacity: .5; }
    30% { transform: translateY(-5px); opacity: 1; }
}

.wa-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px 0;
    animation: waMsgIn .28s ease both;
}
.wa-option {
    border: 1.5px solid #128C7E;
    color: #075E54;
    background: rgba(255,255,255,.85);
    font-size: .85rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--pill);
    transition: background .15s, color .15s, transform .15s;
}
.wa-option:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-1px);
}

.wa-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: flex-start;
    background: #25D366;
    color: #fff !important;
    font-weight: 700;
    font-size: .92rem;
    padding: 12px 20px;
    border-radius: var(--pill);
    box-shadow: 0 10px 24px rgba(37,211,102,.35);
    transition: transform .15s, box-shadow .2s;
    animation: waMsgIn .28s ease both;
}
.wa-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37,211,102,.45);
}

.wa-chat-foot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #F0F2F5;
    border-top: 1px solid #E2E8F0;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    overflow: hidden;
}
.wa-chat-foot input {
    flex: 1;
    min-width: 0;
    border: none;
    border-radius: var(--pill);
    background: #fff;
    padding: 12px 18px;
    font: inherit;
    font-size: 16px;
    box-shadow: var(--shadow-sm);
}
.wa-chat-foot input:focus { outline: 2px solid rgba(18,140,126,.35); }
.wa-chat-foot button {
    width: 46px; height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid; place-items: center;
    transition: transform .15s, background .15s;
}
.wa-chat-foot button:hover { background: #1EBE5B; transform: scale(1.06); }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--navy);
    color: #94A3B8;
    padding-top: clamp(56px, 7vw, 88px);
    padding-bottom: 24px;
}
.site-footer h4 { color: #fff; font-size: .92rem; margin-bottom: 14px; }
.site-footer .logo-light { color: #fff; }
.site-footer .logo-light .logo-mark { background: rgba(255,255,255,.1); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .9fr .9fr 1.1fr;
    gap: clamp(24px, 4vw, 48px);
    margin-bottom: 40px;
}
.footer-brand p { font-size: .93rem; color: #64748B; max-width: 340px; }
.site-footer ul li { padding: 5px 0; font-size: .93rem; }
.site-footer ul li a:hover { color: #fff; }
.social { display: flex; gap: 8px; margin-top: 16px; }
.social a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    display: grid; place-items: center;
    font-weight: 700; font-size: .8rem; color: #fff;
    transition: background .2s;
}
.social a:hover { background: rgba(255,255,255,.12); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
}

/* ---------- WhatsApp + Sticky CTA ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 88px; right: 20px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 12px 28px rgba(37,211,102,.4);
    z-index: 58;
    transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.06); }

.sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 57;
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    padding: 12px var(--pad-x);
    display: none;
    gap: 10px;
    align-items: center;
    box-shadow: 0 -8px 24px rgba(15,23,42,.08);
    transition: opacity .25s ease;
}
.sticky-cta p {
    margin: 0;
    flex: 1;
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}
.sticky-cta p small { display: block; font-weight: 500; color: var(--muted); font-size: .75rem; }
.sticky-cta .btn { flex-shrink: 0; }

/* ---------- Responsivo ---------- */

/* Tablet */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-panel { max-width: 100%; width: 100%; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .solucoes-grid, .planos-grid { grid-template-columns: repeat(2, 1fr); }
    .servicos-grid, .steps { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .contato-grid { grid-template-columns: 1fr; }
    .plano.featured { transform: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-h: 60px;
        --pad-x: clamp(14px, 4vw, 20px);
    }

    section { padding: clamp(48px, 10vw, 72px) 0; }

    body { padding-bottom: calc(150px + env(safe-area-inset-bottom, 0px)); }

    /* Promo */
    .promo-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 8px;
        padding: 10px var(--pad-x);
    }
    .promo-link { align-self: flex-start; }

    /* Header + menu */
    .nav, .header-cta { display: none; }
    .menu-toggle { display: inline-flex; flex-shrink: 0; }
    .logo strong { font-size: 1.05rem; max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

    .nav.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--surface);
        border-top: 1px solid var(--line);
        padding: 12px var(--pad-x) 18px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        max-height: calc(100dvh - var(--header-h) - 48px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav.open a {
        padding: 14px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--line);
        font-size: 1rem;
    }
    .nav.open .nav-mobile-cta { display: flex; }

    /* Hero */
    .hero { padding-top: 32px; padding-bottom: 40px; }
    .hero-pen {
        width: 86px;
        right: -4%;
        top: -16px;
        opacity: .55;
        transform: rotate(-34deg);
    }
    .hero-signature {
        width: 300px;
        right: -18%;
        top: 90px;
        opacity: .5;
    }
    .hero-tag { font-size: .78rem; max-width: 100%; }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        white-space: normal;
    }
    .hero-panel { padding: 18px; border-radius: var(--radius-lg); }
    .hero-stats { grid-template-columns: 1fr; gap: 8px; }
    .feed-item { padding: 10px; }
    .hero-panel-cta { padding: 12px; font-size: .88rem; }

    /* Trust + metrics */
    .hero-bottom { gap: 14px; }
    .trust-grid {
        grid-template-columns: 1fr;
        padding: 14px;
        gap: 12px;
        border-radius: var(--radius-lg);
    }
    .trust-item { min-height: 44px; }
    .metrics { padding-top: 32px; }
    .metrics-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .metric.glass { padding: 20px 14px; }

    /* Grids 1 coluna */
    .solucoes-grid,
    .planos-grid,
    .steps,
    .servicos-grid { grid-template-columns: 1fr; }

    .card, .plano, .servico-card, .step { padding: 22px; }
    .depo-card { padding: 22px; }
    .slider-btn { flex: 0 0 40px; width: 40px; height: 40px; }

    /* Comparativo → cards no mobile */
    .compare-wrap {
        background: transparent;
        border: none;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .compare-head { display: none; }
    .compare-row {
        display: flex;
        flex-direction: column;
        gap: 0;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
    }
    .compare-row > div {
        padding: 12px 16px;
        border-left: none !important;
        border-bottom: 1px solid var(--line);
    }
    .compare-row > div:last-child { border-bottom: 0; }
    .compare-row > div:first-child {
        background: var(--bg-soft);
        font-weight: 700;
        font-size: .92rem;
        color: var(--navy);
    }
    .compare-row > div:nth-child(2)::before {
        content: "Mercado: ";
        font-weight: 600;
        color: var(--muted);
    }
    .compare-row > div:nth-child(3)::before {
        content: "Nós: ";
        font-weight: 700;
        color: var(--primary-dark);
    }
    .compare-row .ours::before { content: none; }

    /* Planos */
    .plano .preco { font-size: 2rem; }
    .plano.featured { order: -1; }

    /* Serviços */
    .servico-head { flex-wrap: wrap; }
    .servico-destaque { flex-direction: column; align-items: flex-start; }

    /* Depoimentos + CTA */
    .depo-cta .btn { width: 100%; }
    .cta-final .actions { flex-direction: column; }
    .cta-final .actions .btn { width: 100%; white-space: normal; }
    .cta-final h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

    /* Contato */
    .wa-chat::before {
        right: 12px;
        top: -10px;
        font-size: .65rem;
        padding: 5px 10px;
    }
    .wa-chat-body { min-height: 300px; max-height: 360px; }
    .wa-msg { max-width: 90%; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    /* Fixos */
    .sticky-cta {
        display: flex;
        padding: 10px var(--pad-x) calc(10px + env(safe-area-inset-bottom, 0px));
    }
    .sticky-cta .btn {
        padding: 10px 14px;
        font-size: .82rem;
        min-height: 44px;
    }
    .whatsapp-float {
        bottom: calc(96px + env(safe-area-inset-bottom, 0px));
        right: 14px;
        width: 52px;
        height: 52px;
    }

    .section-head { margin-bottom: 28px; }
    .section-head p { font-size: 1rem; }
    .servicos-cta .btn, .depo-cta .btn { width: 100%; }
}

/* Celular pequeno */
@media (max-width: 480px) {
    h1 { font-size: clamp(1.85rem, 8vw, 2.35rem); }
    h2 { font-size: clamp(1.45rem, 6vw, 1.85rem); }

    .metrics-grid { grid-template-columns: 1fr; }
    .metric .num { font-size: 1.75rem; }

    .promo-inner p { font-size: .76rem; }
    .promo-link { font-size: .78rem; }

    .sticky-cta {
        flex-wrap: wrap;
        gap: 8px;
    }
    .sticky-cta p {
        flex: 1 1 100%;
        text-align: center;
    }
    .sticky-cta .btn {
        flex: 1;
        width: 100%;
    }

    .compare-row > div { padding: 10px 14px; font-size: .9rem; }
    .faq-q { font-size: .94rem; padding: 16px; }
    .faq-a { padding: 0 16px 16px; }

    .contato-info .info-list li { align-items: flex-start; }
    .contato-info .info-list strong { word-break: break-word; }
}

/* Telas muito estreitas */
@media (max-width: 360px) {
    .btn-lg { padding: 14px 18px; font-size: .92rem; }
    .logo-mark { width: 34px; height: 34px; }
    .hero-checks li { font-size: .88rem; }
}

/* Tablet landscape / desktop pequeno — comparativo em tabela */
@media (min-width: 769px) {
    .compare-row > div:nth-child(3)::before,
    .compare-row .ours::before { content: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
