/* ═══════════════════════════════════════════════════════
   AMPARO SAÚDE LEGAL — Design System v2.1 (corrigido)
   Paleta: Marinho Profundo · Ouro Envelhecido · Marfim
   Tipografia: Playfair Display + DM Sans
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; transition: color .2s; }
button { cursor: pointer; font: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; }

/* ── Variáveis ───────────────────────────────────────── */
:root {
  --bg:          #040918;
  --bg-2:        #060E20;
  --surface:     #08132A;
  --surface-2:   #0C1B36;
  --surface-3:   #111E3B; /* um pouco mais claro para cards internos */

  /* Ouro envelhecido — mais âmbar, menos "amarelo elétrico" */
  --gold:        #B8861F;
  --gold-lt:     #D4A030;
  --gold-pale:   rgba(184,134,31,.10);
  --gold-glow:   rgba(184,134,31,.20);
  --gold-b:      rgba(184,134,31,.25);

  /* Marfim / botão primário */
  --ivory:       #F2EBD9;
  --ivory-dark:  #DDD3BE;

  /* Texto */
  --text:        #A8B8CC;
  --text-br:     #DCE6F2;
  --text-dim:    #5A6B84;

  /* Verdes de status */
  --green:       #176A5A;
  --green-lt:    #26907A;

  /* Bordas e sombras */
  --border:      rgba(255,255,255,.075);
  --border-g:    rgba(184,134,31,.22);
  --shadow:      0 12px 40px rgba(0,0,0,.45);
  --shadow-lg:   0 28px 88px rgba(0,0,0,.60);

  /* Raios */
  --r:           10px;
  --r-lg:        18px;
  --r-xl:        26px;

  /* Fontes */
  --fd: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --fb: 'DM Sans', 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --wrap: 1160px;
  --py:   86px;
}

/* ── Base ────────────────────────────────────────────── */
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

/* Textura de grade muito sutil no fundo */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

/* ── Acessibilidade ──────────────────────────────────── */
.skip {
  position: absolute; left: -999px; width: 1px; height: 1px; overflow: hidden;
}
.skip:focus {
  left: 12px; top: 12px; width: auto; height: auto;
  padding: 10px 20px; background: var(--ivory); color: var(--bg);
  border-radius: var(--r); z-index: 9999; font-weight: 700;
}

/* ── Layout ──────────────────────────────────────────── */
.wrap  { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--py) 0; }
.section.alt { background: var(--surface); }

.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Tipografia ──────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--fd);
  color: var(--text-br);
  line-height: 1.22;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
p  { margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

.gold-text { color: var(--gold-lt); }
.lead { font-size: 1.06rem; color: var(--text-br); line-height: 1.8; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fb); font-size: .72rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--gold-lt);
  background: var(--gold-pale); border: 1px solid var(--border-g);
  padding: 6px 14px; border-radius: 50px; margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-lt); box-shadow: 0 0 8px var(--green-lt);
  flex-shrink: 0;
}

/* Cabeçalho de seção centralizado */
.sh {
  text-align: center; max-width: 660px; margin: 0 auto 52px;
}
.sh p { color: var(--text); font-size: 1rem; margin-top: 14px; }

/* ── BOTÕES — redesenhados para máximo contraste ─────── */

/* Base comum — sem cor definida aqui, cada variante define */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: 8px;
  font-family: var(--fb); font-size: .9rem; font-weight: 700;
  letter-spacing: .02em; border: 2px solid transparent;
  transition: all .22s; text-decoration: none; cursor: pointer;
  white-space: nowrap;
}

/* PRIMARY — fundo marfim, texto marinho escuro: contraste máximo */
.btn-primary {
  background-color: var(--ivory);
  border-color: var(--ivory);
  color: #0A0E1A;  /* marinho quase preto — contraste WCAG AAA */
}
.btn-primary:hover {
  background-color: #fff;
  border-color: #fff;
  color: #0A0E1A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242,235,217,.18);
}

/* SECONDARY/OUTLINE — contorno ouro, texto ouro, fundo transparente */
.btn-outline {
  background-color: transparent;
  border-color: var(--border-g);
  color: var(--gold-lt);
}
.btn-outline:hover {
  background-color: var(--gold-pale);
  border-color: var(--gold-lt);
  color: var(--ivory);
  transform: translateY(-2px);
}

/* GHOST — para botões secundários discretos no header */
.btn-ghost {
  background-color: rgba(255,255,255,.06);
  border-color: var(--border);
  color: var(--text-br);
}
.btn-ghost:hover {
  background-color: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}

/* Modificadores de tamanho */
.btn-lg { padding: 15px 32px; font-size: .95rem; border-radius: 10px; }
.btn-sm { padding: 8px 16px;  font-size: .82rem; border-radius: 7px;  }
.btn-block { width: 100%; }

/* ── Cards ───────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color .28s, transform .28s, box-shadow .28s;
}
.card:hover {
  border-color: var(--border-g);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card-gold {
  border-color: var(--border-g);
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
}

/* ── Faixa superior ──────────────────────────────────── */
.top-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-size: .79rem; color: var(--text-dim); padding: 8px 0;
}
.top-strip .wrap {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.top-strip strong { color: var(--gold-lt); font-weight: 600; }

/* ── Header / Nav ────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(4, 9, 24, .95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

/* Container flex do header — CRÍTICO para evitar overflow */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;          /* gap entre brand e nav */
  height: 70px;
  min-width: 0;       /* permite flex-shrink funcionar */
}

/* Marca (logo + texto) — não encolhe */
.brand {
  display: flex; align-items: center; gap: 11px;
  flex-shrink: 0;     /* IMPEDE que o logo seja comprimido */
  min-width: 0;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: #071126;
  border: 1px solid rgba(212,160,48,.42);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: none;
}
.brand-mark img { width: 38px; height: 38px; object-fit: contain; filter: none; transform: none; }

.brand-text { min-width: 0; overflow: hidden; }
.brand-text strong {
  display: block; font-family: var(--fd); font-size: .95rem;
  color: var(--ivory); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.brand-text small {
  display: block; font-size: .63rem; color: var(--gold-lt);
  text-transform: uppercase; letter-spacing: .1em; white-space: nowrap;
}

/* Navegação desktop — cresce para ocupar espaço disponível mas alinhada à direita */
.main-nav {
  display: flex; align-items: center; gap: 2px;
  flex-shrink: 1; overflow: hidden; /* encolhe em vez de quebrar */
}
.main-nav a {
  color: var(--text); font-size: .84rem; font-weight: 500;
  padding: 7px 11px; border-radius: 7px; transition: all .18s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--text-br); background: rgba(255,255,255,.06); }
.main-nav .btn { margin-left: 6px; flex-shrink: 0; }

/* Botão hamburguer (mobile) */
.mob-tog {
  display: none; flex-shrink: 0;
  background: none; border: 1px solid var(--border);
  color: var(--text-br); padding: 7px 11px;
  border-radius: 7px; font-size: 1.1rem; line-height: 1;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  padding: 96px 0 76px; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 75% 55% at 50% 0%, rgba(184,134,31,.07) 0%, transparent 65%),
    radial-gradient(circle at 88% 30%, rgba(23,106,90,.07) 0%, transparent 40%),
    var(--bg-2);
}

.hero-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px solid rgba(184,134,31,.07);
}
.hero-ring-1 { width: 720px; height: 720px; right: -220px; top: -220px; }
.hero-ring-2 { width: 500px; height: 500px; right: -120px; top: -120px; }
.hero-ring-3 { width: 300px; height: 300px; right: -40px;  top: -40px; }

.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px;
  align-items: center; position: relative; z-index: 1;
}

.hero-content h1 { margin-bottom: 20px; }
.hero-content h1 em { font-style: italic; color: var(--gold-lt); display: block; }
.hero-content .lead { max-width: 500px; margin-bottom: 30px; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

/* Badges de área de atuação */
.hero-badges { display: flex; flex-direction: column; gap: 9px; }
.hbadge {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 13px 17px; transition: border-color .22s;
}
.hbadge:hover { border-color: var(--border-g); }
.hbadge-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--gold-pale); border: 1px solid var(--border-g);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.hbadge-text strong { display: block; font-size: .86rem; color: var(--text-br); font-weight: 600; }
.hbadge-text span   { font-size: .74rem; color: var(--text-dim); }

/* Cartão-escudo na hero */
.hero-visual { position: relative; }
.shield-card {
  background: var(--surface);
  border: 1px solid var(--border-g);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(184,134,31,.06);
  max-width: 360px; margin: 0 auto;
}
.shield-icon { width: 100px; height: 100px; margin: 0 auto 20px; color: var(--gold-lt); }

.shield-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border-radius: var(--r); overflow: hidden; margin: 20px 0;
}
.sstat {
  background: var(--surface-2); padding: 13px 6px; text-align: center;
}
.sstat strong { display: block; font-family: var(--fd); font-size: 1.2rem; color: var(--gold-lt); }
.sstat span   { font-size: .66rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .04em; }
.shield-note  { font-size: .73rem; color: var(--text-dim); line-height: 1.55; }

/* ── Tabs de serviços ────────────────────────────────── */
.svc-tabs {
  display: flex; gap: 10px; justify-content: center;
  margin-bottom: 40px; flex-wrap: wrap;
}
.stab {
  padding: 10px 24px; border-radius: 50px; font-size: .86rem; font-weight: 600;
  border: 1.5px solid var(--border); background: none; color: var(--text-dim);
  transition: all .22s; white-space: nowrap;
}
.stab:hover, .stab.active {
  border-color: var(--border-g); color: var(--gold-lt);
  background: var(--gold-pale);
}
.stab.active { cursor: default; }

.svc-panel { display: none; animation: fadein .3s ease; }
.svc-panel.active { display: block; }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.svc-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: start; }
.svc-icon {
  width: 52px; height: 52px; background: var(--gold-pale);
  border: 1px solid var(--border-g); border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.svc-text h3 { font-size: 1.6rem; margin: 8px 0 12px; }

.rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 16px; }
.right-item {
  background: var(--surface-2); border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0; padding: 13px 15px; transition: background .2s;
}
.right-item:hover { background: var(--surface-3); }
.right-item h4 {
  font-size: .85rem; color: var(--text-br); margin-bottom: 3px;
  font-family: var(--fb); font-weight: 600;
}
.right-item p { font-size: .76rem; color: var(--text-dim); margin: 0; }

/* Tags de categoria */
.tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 50px;
  background: var(--gold-pale); color: var(--gold-lt); border: 1px solid var(--border-g);
  margin-bottom: 10px;
}
.tag.sus  { background: rgba(23,106,90,.15); color: var(--green-lt); border-color: rgba(23,106,90,.3); }
.tag.inss { background: rgba(99,102,241,.1);  color: #a5b4fc; border-color: rgba(99,102,241,.3); }

/* ── Acordeão — Informações jurídicas ───────────────── */
.accordion { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-item:last-child { border-bottom: none; }

.acc-trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 14px;
  padding: 20px 26px; background: none; border: none; cursor: pointer;
  color: var(--text-br); font-size: .93rem; font-weight: 600;
  text-align: left; transition: background .18s;
}
.acc-trigger:hover { background: rgba(255,255,255,.03); }
.acc-plus {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 1px solid var(--border-g); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--gold-lt); transition: transform .25s;
}
.acc-trigger[aria-expanded="true"] .acc-plus { transform: rotate(45deg); }
.acc-body { display: none; padding: 4px 26px 24px; }
.acc-trigger[aria-expanded="true"] + .acc-body { display: block; }
.acc-body p  { font-size: .91rem; color: var(--text); margin-bottom: .8rem; }
.acc-body ul { padding-left: 16px; list-style: disc; }
.acc-body li { font-size: .88rem; color: var(--text); margin-bottom: 7px; }
.acc-body strong { color: var(--text-br); }

.atag {
  display: inline-block; font-size: .66rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 50px; margin-right: 9px;
  background: var(--gold-pale); color: var(--gold-lt); border: 1px solid var(--border-g);
}
.atag.sus  { background: rgba(23,106,90,.15); color: var(--green-lt); border-color: rgba(23,106,90,.3); }
.atag.inss { background: rgba(99,102,241,.1);  color: #a5b4fc; border-color: rgba(99,102,241,.3); }

/* ── Etapas do processo ──────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 33px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-g), transparent);
}
.step { text-align: center; }
.step-n {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--surface); border: 1.5px solid var(--border-g);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 1.35rem; color: var(--gold-lt);
  position: relative; z-index: 1;
}
.step h3 { font-size: .93rem; font-family: var(--fb); font-weight: 700; margin-bottom: 7px; }
.step p   { font-size: .81rem; color: var(--text-dim); }

/* ── Grade de documentos ─────────────────────────────── */
.doc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.doc-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 12px 15px;
  font-size: .86rem; color: var(--text-br);
  transition: border-color .2s;
}
.doc-item:hover { border-color: var(--border-g); }
.doc-ico {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--gold-pale); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem;
}

/* ── Preview do portal ───────────────────────────────── */
.portal-preview {
  background: var(--surface-2); border: 1px solid var(--border-g);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pp-head {
  background: var(--surface-3); border-bottom: 1px solid var(--border);
  padding: 14px 20px; display: flex; align-items: center; justify-content: space-between;
}
.pp-head-title { font-family: var(--fd); font-size: .9rem; color: var(--text-br); }
.pp-badge {
  font-size: .68rem; background: var(--gold-pale); color: var(--gold-lt);
  border: 1px solid var(--border-g); padding: 4px 10px; border-radius: 50px;
}
.pp-body { padding: 20px; }
.pp-client {
  background: var(--surface-3); border-radius: var(--r); padding: 13px 16px;
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.pp-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-pale); border: 1px solid var(--border-g);
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.pp-status {
  margin-left: auto; font-size: .68rem; padding: 4px 10px; border-radius: 20px;
  background: rgba(34,197,94,.1); color: #4ade80; border: 1px solid rgba(34,197,94,.28);
  white-space: nowrap;
}
.pp-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: var(--text-dim); margin-bottom: 10px;
}
.pp-timeline { display: flex; flex-direction: column; }
.pp-event {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.pp-event:last-child { border-bottom: none; }
.pp-dot {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .78rem;
}
.pp-dot.done   { background: rgba(34,197,94,.1);  color: #4ade80; border: 1px solid rgba(34,197,94,.28); }
.pp-dot.active { background: var(--gold-pale);     color: var(--gold-lt); border: 1px solid var(--border-g); }
.pp-dot.pend   { background: var(--surface-3);     color: var(--text-dim); border: 1px solid var(--border); }
.pp-info h4 {
  font-size: .84rem; color: var(--text-br); margin-bottom: 2px;
  font-family: var(--fb); font-weight: 600;
}
.pp-info p  { font-size: .74rem; color: var(--text-dim); margin: 0; }
.pp-info em { font-style: normal; font-size: .68rem; color: var(--gold-lt); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq details { border-bottom: 1px solid var(--border); }
.faq details:first-child { border-top: 1px solid var(--border); }
.faq summary {
  padding: 18px 0; cursor: pointer; list-style: none;
  font-weight: 600; color: var(--text-br); font-size: .92rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; user-select: none; transition: color .18s;
}
.faq summary:hover { color: var(--ivory); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; color: var(--gold-lt); font-size: 1.2rem; flex-shrink: 0;
  transition: transform .22s; font-weight: 300; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 16px; color: var(--text); font-size: .89rem; line-height: 1.7; }

/* ── Formulário de triagem ───────────────────────────── */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px;
}
.form-title {
  font-family: var(--fd); font-size: 1.3rem; color: var(--text-br); margin-bottom: 22px;
}

.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; color: var(--text-dim); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 11px 15px;
  color: var(--text-br); font-size: .9rem; outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--border-g);
  box-shadow: 0 0 0 3px rgba(184,134,31,.08);
}
.field textarea { min-height: 105px; resize: vertical; }
.field select option { background: var(--surface-2); color: var(--text-br); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.notice-box {
  background: rgba(184,134,31,.07); border: 1px solid rgba(184,134,31,.2);
  border-radius: var(--r); padding: 12px 16px;
  font-size: .8rem; color: var(--text); margin-bottom: 16px;
}
.notice-box strong { color: var(--gold-lt); }

.success-box {
  display: none; background: rgba(34,197,94,.07);
  border: 1px solid rgba(34,197,94,.25); border-radius: var(--r);
  padding: 20px; text-align: center; color: #86efac; margin-top: 14px;
}
.success-box .proto {
  font-size: 1.25rem; font-family: var(--fd); margin: 8px 0;
  color: var(--ivory); letter-spacing: .04em;
}
.success-box small { color: var(--text-dim); font-size: .79rem; display: block; }

.proto-actions { display: none; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.honeypot { position: absolute; left: -9999px; }

/* ── Lista de verificação ────────────────────────────── */
.chk { list-style: none; }
.chk li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px; font-size: .9rem; color: var(--text);
}
.chk li::before {
  content: '✓'; flex-shrink: 0; width: 21px; height: 21px;
  background: rgba(23,106,90,.2); color: var(--green-lt);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; margin-top: 2px;
}

/* ── Rodapé ──────────────────────────────────────────── */
.footer { background: #030810; border-top: 1px solid var(--border); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer h5 {
  font-family: var(--fb); font-size: .73rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--gold-lt); margin-bottom: 14px;
}
.footer p, .footer a { font-size: .82rem; color: var(--text-dim); line-height: 1.8; }
.footer a:hover { color: var(--text-br); }
.flinks { display: flex; flex-direction: column; gap: 6px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .74rem; color: var(--text-dim); }
.legal-note {
  font-size: .75rem; color: var(--text-dim); line-height: 1.7;
  background: var(--surface); border-radius: var(--r);
  padding: 14px 18px; border: 1px solid var(--border); margin-bottom: 22px;
}

/* ── WhatsApp flutuante ──────────────────────────────── */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  background: #1DA851; color: #fff;
  padding: 12px 20px; border-radius: 50px;
  font-weight: 700; font-size: .84rem;
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 6px 24px rgba(29,168,81,.35);
  transition: all .22s; text-decoration: none; border: 2px solid transparent;
}
.float-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(29,168,81,.45);
  color: #fff;
}

/* ── Animações de revelação ──────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Utilitários ─────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ── Responsivo ──────────────────────────────────────── */
@media (max-width: 1060px) {
  :root { --py: 70px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  /* Nav: esconde links menos prioritários, mostra só os essenciais */
  .nav-hide-1060 { display: none !important; }
}

@media (max-width: 860px) {
  :root { --py: 56px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; gap: 24px; }
  .rights-grid { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .top-strip .wrap {
    flex-direction: column; gap: 3px; text-align: center; font-size: .72rem;
  }
  /* Mobile nav */
  .mob-tog { display: block; }
  .main-nav {
    display: none;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(4, 9, 24, .98);
    backdrop-filter: blur(18px);
    flex-direction: column; padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    gap: 2px; overflow: visible;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 11px 14px; }
  .main-nav .btn { margin-left: 0; width: 100%; }
  .nav-hide-1060 { display: flex !important; } /* volta a exibir no mobile expandido */
  /* Form */
  .field-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .form-wrap { padding: 22px; }
}

@media (max-width: 500px) {
  .svc-tabs { gap: 7px; }
  .stab { padding: 9px 16px; font-size: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .card:hover, .btn:hover, .hbadge:hover { transform: none; }
}

/* Redes sociais oficiais */
.social-links{display:flex;gap:10px;align-items:center;margin-top:16px;flex-wrap:wrap}
.social-links a{width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;border-radius:14px;border:1px solid rgba(230,195,106,.35);background:rgba(230,195,106,.10);color:#e6c36a;transition:transform .18s ease,background .18s ease,border-color .18s ease}
.social-links a:hover,.social-links a:focus-visible{transform:translateY(-2px);background:rgba(230,195,106,.18);border-color:rgba(230,195,106,.62);outline:0}
.social-links svg{width:21px;height:21px;fill:currentColor}
.social-note{display:block;margin-top:8px;color:var(--text, #b9c2d4);line-height:1.5}
