/* =========================================================
   Barra — folha de estilo
   Identidade: azul-confiança + âmbar-família + semântica de chamada.
   Tipografia grande e alto contraste (público inclui idosos).
   ========================================================= */

:root {
  /* Marca */
  --blue: #1B5ED8;
  --blue-light: #4A90E2;
  --blue-deep: #0E1C36;
  --surface-navy: #162850;
  --amber: #E8930A;
  --amber-soft: #fbe9c8;
  --amber-accessible: #9A5B00;  /* 5.4:1 sobre branco — eyebrow em fundo claro */

  /* Semântica de chamada */
  --green: #1DB87A;
  --red: #D93025;

  /* Neutros (tema claro de conteúdo) */
  --bg: #ffffff;
  --bg-warm: #FBF8F3;       /* off-white quente para bandas alternadas */
  --ink: #11203B;           /* texto principal (>= 12:1 sobre branco) */
  --ink-2: #495A77;         /* texto secundário (>= 6:1) */
  --rule: #e7ebf2;
  --card: #ffffff;

  /* Tipografia
     --font-display: serifada editorial (autoridade afetiva) — só títulos e momentos de marca.
     --font-brand:   sans (Inter) — botões, eyebrows, tags, navegação.
     --font-body:    Inter — corpo de texto. */
  --font-body: "Inter", "Inter Fallback", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-brand: "Inter", "Inter Fallback", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", "Fraunces Fallback", Georgia, "Times New Roman", serif;

  /* Escala fluida (base grande p/ legibilidade) */
  --fs-base: 1.125rem;      /* 18px */
  --fs-sm: 1rem;            /* 16px */
  --fs-lg: clamp(1.25rem, 1.05rem + 1vw, 1.5rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.8vw, 1.5rem);
  --fs-h2: clamp(1.9rem, 1.5rem + 2.2vw, 2.85rem);
  --fs-h1: clamp(1.95rem, 1.3rem + 3.2vw, 3.85rem);

  /* Espaço */
  --sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem;
  --sp-6: 1.5rem; --sp-8: 2rem; --sp-12: 3rem; --sp-16: 4rem; --sp-24: 6rem;

  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 4px 22px rgba(14, 28, 54, .10);
  --shadow-lg: 0 18px 50px rgba(14, 28, 54, .18);
  --maxw: 1140px;
}

/* Fallbacks com métricas ajustadas — neutralizam o CLS na troca de fonte */
@font-face {
  font-family: "Inter Fallback";
  src: local("Arial");
  size-adjust: 107%; ascent-override: 90%; descent-override: 22%; line-gap-override: 0%;
}
@font-face {
  /* Fallback serif p/ Fraunces — métricas de Georgia, neutraliza CLS na troca */
  font-family: "Fraunces Fallback";
  src: local("Georgia");
  size-adjust: 100%; ascent-override: 92%; descent-override: 24%; line-gap-override: 0%;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -.015em; margin: 0; color: var(--ink); overflow-wrap: break-word; text-wrap: balance; }
h1 { font-size: var(--fs-h1); font-weight: 800; letter-spacing: -.022em; }
h2 { font-size: var(--fs-h2); font-weight: 700; }
h3 { font-size: var(--fs-h3); font-weight: 600; }
p { margin: 0; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
/* Links em texto corrido devem ser distinguíveis sem depender só da cor (WCAG 1.4.1) */
.legal-body a, main p a, main li a, .perm-note a { text-decoration: underline; text-underline-offset: 3px; }
img, svg { max-width: 100%; }
strong { font-weight: 700; color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.container-narrow { max-width: 760px; }

/* Foco visível para teclado */
:where(a, button, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: 0; top: 0; z-index: 100; transform: translateY(-120%);
  background: var(--blue); color: #fff; padding: .75rem 1rem; border-radius: 0 0 10px 0;
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem; justify-content: center;
  font-family: var(--font-brand); font-weight: 700; font-size: 1.0625rem;
  padding: .85rem 1.4rem; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  min-height: 48px; text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { font-size: 1.15rem; padding: 1.05rem 1.8rem; min-height: 56px; }
.btn-sm { padding: .6rem 1rem; min-height: 44px; font-size: 1rem; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(27, 94, 216, .32); }
.btn-primary:hover { background: #1750bb; box-shadow: 0 10px 26px rgba(27, 94, 216, .4); }
.btn-ghost { background: transparent; color: var(--blue); border-color: #c7d6f2; }
.btn-ghost:hover { border-color: var(--blue); background: #f1f6ff; }

/* ---------- Cabeçalho ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88); backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.header-inner { display: flex; align-items: center; gap: var(--sp-6); min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; }
.brand:hover { text-decoration: none; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--ink); letter-spacing: -.02em; }
.site-nav { display: none; margin-left: auto; gap: 1.5rem; }
.site-nav a { color: var(--ink-2); font-weight: 600; font-size: 1rem; }
.site-nav a:hover { color: var(--blue); text-decoration: none; }
.header-cta { margin-left: auto; }
@media (min-width: 860px) {
  .site-nav { display: flex; }
  .header-cta { margin-left: 0; }
}

/* Menu mobile — hambúrguer com <details>, sem JS */
.nav-mobile { position: relative; margin-left: .25rem; }
.nav-toggle {
  list-style: none; display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 10px; cursor: pointer; color: var(--ink);
}
.nav-toggle::-webkit-details-marker { display: none; }
.nav-mobile[open] .nav-toggle { background: #eef4ff; }
.nav-mobile-menu {
  position: absolute; right: 0; top: calc(100% + .5rem);
  display: flex; flex-direction: column; min-width: 220px; gap: .15rem;
  background: #fff; border: 1px solid var(--rule); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: .4rem; z-index: 60;
}
.nav-mobile-menu a {
  color: var(--ink); font-weight: 600; padding: .8rem 1rem; border-radius: 8px;
  min-height: 44px; display: flex; align-items: center;
}
.nav-mobile-menu a:hover { background: #eef4ff; text-decoration: none; }
@media (min-width: 860px) { .nav-mobile { display: none; } }

/* ---------- Eyebrow / cabeçalhos de seção ---------- */
.eyebrow {
  font-family: var(--font-brand); font-weight: 700; font-size: .8rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--amber-accessible); margin: 0 0 .6rem;
}
.eyebrow-on-dark { color: #ffce85; }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-tint { background: var(--bg-warm); }
.section-head { max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-sub { margin-top: 1rem; color: var(--ink-2); font-size: var(--fs-lg); }
.lede { font-size: var(--fs-lg); color: var(--ink-2); }
.hl { color: var(--blue); }

/* ---------- Herói ---------- */
.hero {
  background:
    radial-gradient(120% 100% at 100% 0%, #14346e 0%, var(--blue-deep) 55%) ,
    var(--blue-deep);
  color: #eaf1ff; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }
.hero .eyebrow { color: #ffce85; }
.hero h1 { color: #fff; }
.hero .lede { color: #c6d4f0; margin-top: 1.25rem; max-width: 38ch; }
.hero .hl { color: #8fc0ff; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero .btn-ghost { color: #dbe7ff; border-color: rgba(255,255,255,.35); }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hero-trust { display: flex; align-items: center; gap: .55rem; margin-top: 1.5rem; color: #aebfe2; font-size: 1rem; }
.hero-trust .ico { color: var(--green); flex: none; }
.hero-trust strong { color: #eaf1ff; }

/* Arte do herói: telefone com cartões de chamada */
.hero-art { position: relative; display: flex; justify-content: center; }
.shield-glow {
  position: absolute; inset: -10% 10% auto; height: 70%; z-index: 0;
  background: radial-gradient(50% 50% at 50% 40%, rgba(63,217,140,.22), transparent 70%);
  filter: blur(6px); pointer-events: none;
}
/* Celular realista — moldura, ilha dinâmica, botões laterais, app Barra na tela */
.phone {
  position: relative; z-index: 1;
  width: min(308px, 84vw); padding: 11px;
  border-radius: 46px;
  background: linear-gradient(155deg, #232c42 0%, #0c1426 55%, #1a2336 100%);
  box-shadow:
    0 0 0 2px rgba(255,255,255,.06),
    inset 0 1px 1px rgba(255,255,255,.12),
    0 30px 60px rgba(5,10,25,.5), var(--shadow-lg);
}
/* botões laterais */
.phone::before { content:""; position:absolute; right:-3px; top:118px; width:3px; height:62px; border-radius:0 3px 3px 0; background:#39466a; }
.phone::after  { content:""; position:absolute; left:-3px;  top:100px; width:3px; height:96px; border-radius:3px 0 0 3px; background:#39466a; }
/* ilha dinâmica */
.phone-island { position:absolute; top:20px; left:50%; transform:translateX(-50%); width:92px; height:25px; background:#05060a; border-radius:99px; z-index:6; }
/* tela */
.phone-screen {
  position: relative; border-radius: 36px; overflow: hidden;
  background: #eef2f9; display: flex; flex-direction: column;
  min-height: 470px;
}
/* barra de status */
.phone-status { display:flex; align-items:center; justify-content:space-between; padding:.85rem 1.35rem .35rem; color:var(--ink); }
.phone-time { font-family:var(--font-brand); font-weight:700; font-size:.82rem; letter-spacing:.01em; }
.phone-icons { display:inline-flex; align-items:center; gap:.3rem; color:var(--ink); }
.phone-icons svg { display:block; }
/* barra do app */
.app-bar { display:flex; align-items:center; justify-content:space-between; gap:.5rem; padding:.55rem 1rem .65rem; background:#fff; border-bottom:1px solid #e7ebf2; }
.app-logo { display:inline-flex; align-items:center; gap:.4rem; font-family:var(--font-display); font-weight:800; font-size:1.08rem; color:var(--ink); letter-spacing:-.01em; }
.app-status { display:inline-flex; align-items:center; gap:.35rem; font-family:var(--font-brand); font-size:.7rem; font-weight:800; text-transform:uppercase; letter-spacing:.04em; color:#0c7a4f; background:#d8f6ea; padding:.22rem .55rem; border-radius:99px; }
.app-dot { width:.45rem; height:.45rem; border-radius:50%; background:var(--green); animation: guard-dot 1.8s ease-in-out infinite; }
@keyframes guard-dot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.35; transform:scale(.7); } }
/* feed de chamadas */
.phone-feed { flex:1; display:flex; flex-direction:column; gap:.6rem; padding:.85rem .85rem 1.1rem; background:#eef2f9; }
.app-section-label { margin:.1rem .15rem .15rem; font-family:var(--font-brand); font-size:.68rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-2); }
.call-card {
  background: #fff; border-radius: 14px; padding: .8rem .95rem; box-shadow: 0 6px 16px rgba(20,40,90,.10);
  border-left: 5px solid var(--rule);
}
.call-card .call-num { font-family: var(--font-brand); font-weight: 700; font-size: 1.08rem; color: var(--ink); margin-top: .2rem; }
.call-card .call-label { font-size: .92rem; color: var(--ink-2); }
.call-card.blocked { border-left-color: var(--red); }
.call-card.allowed { border-left-color: var(--green); }
.call-card.muted { border-left-color: var(--amber); opacity: .92; }
.tag { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: .18rem .5rem; border-radius: 99px; font-family: var(--font-brand); }
.tag-block { background: #fde7e5; color: #a51c12; }
.tag-ok { background: #d8f6ea; color: #0c7a4f; }
.tag-mute { background: var(--amber-soft); color: #8a5600; }

/* ===== Cena AO VIVO — o Barra interceptando uma chamada em tempo real ===== */
.app-counter {
  display: flex; align-items: center; gap: .45rem;
  background: #fff; border: 1px solid #e7ebf2; border-radius: 12px;
  padding: .5rem .7rem; font-size: .82rem; color: var(--ink-2);
}
.app-counter b { color: var(--ink); font-family: var(--font-brand); font-weight: 800; font-size: 1rem; }
.app-shield { flex: none; }

.live-call {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: .7rem;
  background: #fff; border-radius: 14px; padding: .8rem .9rem;
  box-shadow: 0 6px 16px rgba(20,40,90,.12);
  border-left: 5px solid #c2cee0;
  transition: border-color .35s ease, box-shadow .35s ease;
}
.live-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: #9fb2d8; transition: background-color .35s ease;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1 3 5v6c0 5 3.8 9.4 9 11 5.2-1.6 9-6 9-11V5z'/%3E%3C/svg%3E");
}
.live-avatar::before {
  content: ""; width: 1.35rem; height: 1.35rem; background: #fff;
  -webkit-mask: center/contain no-repeat var(--ico); mask: center/contain no-repeat var(--ico);
}
.live-text { flex: 1; min-width: 0; }
.live-num { font-family: var(--font-brand); font-weight: 700; font-size: 1rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.live-label { margin-top: .05rem; font-size: .8rem; color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.live-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: transparent; }
.live-bar span { display: block; height: 100%; width: 0; background: var(--blue); }

/* estados da cena */
.live-call.is-ringing  { border-left-color: #6f83ad; }
.live-call.is-ringing  .live-avatar { background: #6f83ad; animation: live-shake .9s ease-in-out infinite; }

.live-call.is-analyzing { border-left-color: var(--blue); box-shadow: 0 6px 20px rgba(27,94,216,.2); }
.live-call.is-analyzing .live-avatar { background: var(--blue);
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg%3E%3Cellipse cx='15' cy='22' rx='3.7' ry='4.6'/%3E%3Cellipse cx='21.5' cy='16' rx='3.9' ry='4.8'/%3E%3Cellipse cx='28' cy='16' rx='3.9' ry='4.8'/%3E%3Cellipse cx='34' cy='22' rx='3.7' ry='4.6'/%3E%3Cellipse cx='24.5' cy='31' rx='7.8' ry='6.8'/%3E%3C/g%3E%3C/svg%3E"); }
.live-call.is-analyzing .live-bar span { animation: live-scan 1.1s ease-out forwards; }

.live-call.is-blocked { border-left-color: var(--red); box-shadow: 0 8px 22px rgba(217,48,37,.26); animation: live-pop .4s ease-out; }
.live-call.is-blocked .live-avatar { background: var(--red);
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 10.6 5-5 1.4 1.4-5 5 5 5-1.4 1.4-5-5-5 5-1.4-1.4 5-5-5-5L7 5.6z'/%3E%3C/svg%3E"); }

.live-call.is-allowed { border-left-color: var(--green); box-shadow: 0 8px 22px rgba(29,184,122,.22); animation: live-pop .4s ease-out; }
.live-call.is-allowed .live-avatar { background: var(--green);
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E"); }

.live-call.is-muted { border-left-color: var(--amber); }
.live-call.is-muted .live-avatar { background: var(--amber);
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22a2 2 0 0 0 2-2h-4a2 2 0 0 0 2 2zm6-6v-5a6 6 0 0 0-4-5.7V4a2 2 0 0 0-4 0v1.3A6 6 0 0 0 6 11v5l-2 2v1h16v-1z'/%3E%3C/svg%3E"); }

@keyframes live-shake { 0%,100% { transform: rotate(0); } 20% { transform: rotate(-12deg); } 40% { transform: rotate(10deg); } 60% { transform: rotate(-8deg); } 80% { transform: rotate(6deg); } }
@keyframes live-scan { from { width: 0; } to { width: 100%; } }
@keyframes live-pop { 0% { transform: scale(.97); } 50% { transform: scale(1.015); } 100% { transform: scale(1); } }

/* ---------- Cards (ameaças / diferenciais) ---------- */
.cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .cards { grid-template-columns: 1fr 1fr 1fr; } }
.cards-3 { grid-template-columns: 1fr; }
@media (min-width: 820px) { .cards-3 { grid-template-columns: 1fr 1fr 1fr; } }
.card {
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-2); font-size: 1.0625rem; }
.card.threat { border-left: 4px solid var(--amber); }
.honest-note { max-width: 760px; margin: 2rem auto 0; text-align: center; color: var(--ink-2); font-size: 1.0625rem; }

/* ---------- Custo (por que dói) ---------- */
.cost-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
@media (min-width: 820px) { .cost-list { grid-template-columns: 1fr 1fr 1fr; } }
.cost-list li { background: #fff; border: 1px solid var(--rule); border-left: 5px solid var(--amber); border-radius: var(--radius-sm); padding: 1.4rem 1.5rem; }
.cost-list h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.cost-list p { color: var(--ink-2); }

/* ---------- Modo Família (banda escura) ---------- */
.family { background: linear-gradient(160deg, #13346f, var(--blue-deep)); color: #eaf1ff; }
.family-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
@media (min-width: 940px) { .family-grid { grid-template-columns: 1.1fr .9fr; } }
.family h2 { color: #fff; }
.lede-on-dark { color: #c6d4f0; margin-top: 1rem; }
.ticks { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: .9rem; }
.ticks li { position: relative; padding-left: 2.1rem; color: #d4e0f7; font-size: 1.0625rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .15rem; width: 1.4rem; height: 1.4rem; border-radius: 99px;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/1rem no-repeat;
}
.ticks strong { color: #fff; }
.family-kicker { margin-top: 1.75rem; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #ffce85; letter-spacing: -.01em; }

/* Anel de família */
.family-art { position: relative; display: grid; place-items: center; min-height: 300px; }
.ring { position: absolute; border-radius: 99px; border: 2px dashed rgba(143,192,255,.35); display: grid; place-items: center; }
.ring span { position: absolute; top: -.7rem; background: var(--blue-deep); padding: 0 .5rem; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: #8fc0ff; font-weight: 700; }
.ring-1 { width: 290px; height: 290px; }
.ring-2 { width: 200px; height: 200px; border-color: rgba(63,217,140,.4); }
.ring-2 span { color: #6fe3ad; }
.ring-core { width: 110px; height: 110px; border: none; background: radial-gradient(circle at 50% 35%, #2E6BD6, #1B5ED8); box-shadow: 0 0 0 10px rgba(46,107,214,.18), var(--shadow-lg); }

/* ---------- Passos ---------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; display: grid; gap: 1.25rem; }
@media (min-width: 820px) { .steps { grid-template-columns: 1fr 1fr 1fr; } }
.step { background: #fff; border: 1px solid var(--rule); border-radius: var(--radius); padding: 1.75rem 1.5rem; box-shadow: var(--shadow); }
.step-num {
  display: inline-grid; place-items: center; width: 2.6rem; height: 2.6rem; border-radius: 99px;
  background: var(--blue); color: #fff; font-family: var(--font-brand); font-weight: 800; font-size: 1.25rem; margin-bottom: .9rem;
}
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--ink-2); }

/* ---------- Privacidade ---------- */
.priv-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 900px) { .priv-grid { grid-template-columns: 1fr 1fr; } }
.priv-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.priv-list li { background: #fff; border: 1px solid var(--rule); border-radius: var(--radius-sm); padding: 1.1rem 1.25rem 1.1rem 3.1rem; position: relative; color: var(--ink-2); box-shadow: 0 2px 8px rgba(14,28,54,.06); }
.priv-list li::before {
  content: ""; position: absolute; left: 1rem; top: 1.15rem; width: 1.4rem; height: 1.4rem;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 1 3 5v6c0 5 3.8 9.4 9 11 5.2-1.6 9-6 9-11V5z'/%3E%3C/svg%3E") center/1rem no-repeat;
  border-radius: 6px;
}
.priv-list strong { color: var(--ink); }

/* ---------- CTA download (banda escura) ---------- */
.section-cta { background: linear-gradient(160deg, var(--blue), #14346e); color: #fff; }
.on-dark { color: #fff; }
.on-dark-sub { color: #d4e0f7; }
.download-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; }
.section-cta .btn-primary { background: #fff; color: var(--blue); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.section-cta .btn-primary:hover { background: #eef4ff; }
.btn.is-soon { background: rgba(255,255,255,.14); color: #eaf1ff; border-color: rgba(255,255,255,.35); cursor: default; box-shadow: none; }
.btn.is-soon:hover { transform: none; background: rgba(255,255,255,.14); }
.soon-note { max-width: 620px; margin: 1.25rem auto 0; text-align: center; color: #d4e0f7; font-size: 1.0625rem; }
.soon-note strong { color: #fff; }
.badge-soon { display: inline-flex; align-items: center; gap: .45rem; padding: .7rem 1.1rem; border-radius: var(--radius-sm); border: 1.5px solid rgba(255,255,255,.45); color: #e7eeff; font-weight: 600; font-size: .95rem; }
.install { max-width: 720px; margin: 2.25rem auto 0; padding-left: 1.25rem; display: grid; gap: .85rem; color: #e7eeff; font-size: 1.0625rem; }
.install li { padding-left: .25rem; }
.install strong { color: #fff; }
.install-why { max-width: 720px; margin: 1.5rem auto 0; text-align: center; color: #c0d0ef; font-size: .98rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; }
.faq details {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius-sm); padding: .25rem 1.25rem; box-shadow: var(--shadow);
}
.faq summary {
  list-style: none; cursor: pointer; font-family: var(--font-brand); font-weight: 700; font-size: 1.1rem;
  padding: 1.1rem 2rem 1.1rem 0; position: relative; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; font-weight: 400; color: var(--blue); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 1.2rem; color: var(--ink-2); font-size: 1.0625rem; }
/* abertura com transição (CSS puro) — sem o "porta de armazém" do <details> cru */
.faq details[open] summary ~ p { animation: faq-open .26s ease-out; }
@keyframes faq-open { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--blue-deep); color: #c6d4f0; padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 2rem 2.5rem; } }

.footer-brand { max-width: 360px; }
.footer-logo { display: inline-flex; align-items: center; gap: .6rem; }
.footer-logo:hover { text-decoration: none; }
.footer-name { font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; color: #fff; letter-spacing: -.02em; }
.footer-tag { margin: .9rem 0 0; font-size: 1rem; line-height: 1.55; color: #aebfe2; }
.footer-by { margin: 1.1rem 0 0; font-size: .95rem; color: #aebfe2; display: inline-flex; align-items: center; gap: .45rem; }
.footer-by a { color: #8fc0ff; text-decoration: underline; text-underline-offset: 2px; }

.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; }
.footer-h { font-family: var(--font-brand); font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #6f83ad; margin: 0 0 .25rem; }
.footer-col a { color: #c6d4f0; font-weight: 600; font-size: 1rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-waitlist-link { color: #8fc0ff !important; }

.footer-bottom {
  margin-top: clamp(2.25rem, 4vw, 3rem); padding: 1.35rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .35rem 1.5rem;
}
.footer-bottom p { margin: 0; font-size: .9rem; color: #7e93bd; }
.footer-fine { color: #7e93bd; font-size: .9rem; }

/* ============================================================
   WOW / movimento — aurora, entrada de chamadas, scroll-reveal.
   Tudo degrada sob prefers-reduced-motion (regra global zera animações)
   e o scroll-reveal só esconde quando há JS (html.js).
   ============================================================ */

/* Herói: aurora mesh animada (2 orbs de luz à deriva) */
.hero { position: relative; }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: .5; z-index: 0;
}
.hero::before {
  width: 620px; height: 520px; top: -180px; left: -90px;
  background: radial-gradient(circle, #2a6fe0 0%, transparent 62%);
  animation: orb-a 16s ease-in-out infinite alternate;
}
.hero::after {
  width: 480px; height: 400px; bottom: -150px; right: -70px;
  background: radial-gradient(circle, #1DB87A 0%, transparent 66%);
  animation: orb-b 21s ease-in-out infinite alternate;
}
@keyframes orb-a { from { transform: translate(0,0) scale(1); } to { transform: translate(60px,40px) scale(1.12); } }
@keyframes orb-b { from { transform: translate(0,0) scale(1); } to { transform: translate(-55px,-30px) scale(1.08); } }
.hero .container { position: relative; z-index: 1; }

/* CTA do herói "respira" */
.hero .btn-primary { animation: cta-breathe 3.2s ease-in-out infinite; }
@keyframes cta-breathe {
  0%,100% { box-shadow: 0 6px 18px rgba(27,94,216,.40), 0 0 0 0 rgba(27,94,216,.35); }
  50%     { box-shadow: 0 10px 30px rgba(27,94,216,.52), 0 0 0 10px rgba(27,94,216,0); }
}

/* Cartões de chamada: entrada escalonada + pulso de bloqueio que vive enquanto
   a cena está na tela. A animação só dispara quando .phone ganha .in-view (via JS),
   pra "o cão está de guarda agora" acontecer no momento em que a pessoa lê. */
.call-card { border-left: none; position: relative; }
.call-card.blocked { box-shadow: inset 4px 0 0 var(--red),   0 8px 20px rgba(0,0,0,.22); }
.call-card.allowed { box-shadow: inset 4px 0 0 var(--green), 0 8px 20px rgba(0,0,0,.22); }
.call-card.muted   { box-shadow: inset 4px 0 0 var(--amber), 0 8px 20px rgba(0,0,0,.22); }
@keyframes card-in { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: translateX(0); } }

/* Estado de espera: só esconde quando há JS e a cena ainda não entrou na tela */
html.js .phone:not(.in-view) .call-card { opacity: 0; transform: translateX(26px); }

.phone.in-view .call-card         { animation: card-in .5s cubic-bezier(.22,1,.36,1) both; }
.phone.in-view .call-card.blocked { animation: card-in .5s .15s cubic-bezier(.22,1,.36,1) both, block-pulse 4.5s 1.4s ease-out infinite; }
.phone.in-view .call-card.allowed { animation-delay: .4s; }
.phone.in-view .call-card.muted   { animation-delay: .65s; }

/* Reduced-motion / sem IntersectionObserver: cartões sempre visíveis (JS adiciona in-view) */
@media (prefers-reduced-motion: reduce) { html.js .phone:not(.in-view) .call-card { opacity: 1; transform: none; } }
@keyframes block-pulse {
  0%   { box-shadow: inset 4px 0 0 var(--red), 0 0 0 0 rgba(217,48,37,.55); }
  60%  { box-shadow: inset 4px 0 0 var(--red), 0 0 0 12px rgba(217,48,37,0); }
  100% { box-shadow: inset 4px 0 0 var(--red), 0 8px 20px rgba(0,0,0,.22); }
}
/* borda-gradiente sutil nos cartões (premium) */
.call-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 14px; padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(190,210,240,.22));
  -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; pointer-events: none;
}

/* Modo Família: núcleo pulsa (anéis com texto ficam parados p/ não girar o rótulo) */
.ring-core { animation: core-pulse 3.6s ease-in-out infinite; }
@keyframes core-pulse {
  0%,100% { box-shadow: 0 0 0 10px rgba(46,107,214,.18), var(--shadow-lg); }
  50%     { box-shadow: 0 0 0 16px rgba(46,107,214,.07), 0 0 42px rgba(63,217,140,.28), var(--shadow-lg); }
}

/* hover premium nos cards de conteúdo */
.card { transition: transform .18s cubic-bezier(.22,1,.36,1), box-shadow .18s ease, border-left-color .18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(14,28,54,.14); }
/* card de ameaça: a borda "dói" no hover, antes do remate verde da solução */
.card.threat { border-left-width: 4px; transition: transform .18s cubic-bezier(.22,1,.36,1), box-shadow .18s ease, border-left-width .18s ease, border-left-color .18s ease; }
.card.threat:hover { border-left-width: 6px; border-left-color: #C2410C; }

/* passos: o número "completa" (azul → verde) no hover */
.step { transition: transform .18s cubic-bezier(.22,1,.36,1), box-shadow .18s ease; }
.step:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(14,28,54,.12); }
.step-num { transition: background-color .2s ease, transform .2s ease; }
.step:hover .step-num { background: var(--green); transform: scale(1.06); }

/* Scroll-reveal — só esconde quando há JS; sob reduced-motion mostra tudo na hora */
html.js .section-head,
html.js .card,
html.js .step,
html.js .cost-list li,
html.js .priv-list li,
html.js .faq details,
html.js .feat-group {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
html.js .revealed { opacity: 1 !important; transform: none !important; }
html.js .cards .card:nth-child(2), html.js .cards-3 .card:nth-child(2) { transition-delay: .08s; }
html.js .cards .card:nth-child(3), html.js .cards-3 .card:nth-child(3) { transition-delay: .16s; }
html.js .cards .card:nth-child(4) { transition-delay: .24s; }
html.js .cards .card:nth-child(5) { transition-delay: .32s; }
html.js .cards .card:nth-child(6) { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  html.js .section-head, html.js .card, html.js .step,
  html.js .cost-list li, html.js .priv-list li, html.js .faq details, html.js .feat-group {
    opacity: 1 !important; transform: none !important;
  }
}

/* ============================================================
   Tema claro / herói amigável (referência Truecaller) + recursos
   ============================================================ */
.hero-light { position: relative; overflow: hidden;
  background: linear-gradient(180deg, #E9F1FF 0%, #F5F9FF 45%, #ffffff 100%);
  padding: clamp(2.5rem,6vw,4.5rem) 0 clamp(3rem,7vw,5rem); }
.hero-light::before, .hero-light::after { content:""; position:absolute; border-radius:50%; pointer-events:none; filter: blur(46px); z-index:0; }
.hero-light::before { width:560px; height:480px; top:-200px; left:-120px; background: radial-gradient(circle,#bcd6ff 0%,transparent 64%); opacity:.75; animation: orb-a 17s ease-in-out infinite alternate; }
.hero-light::after { width:460px; height:380px; bottom:-160px; right:-90px; background: radial-gradient(circle,#c4f1de 0%,transparent 66%); opacity:.6; animation: orb-b 21s ease-in-out infinite alternate; }
.hero-light .container { position: relative; z-index: 1; }
.hero-light .hero-grid { display:grid; gap: clamp(2.5rem,5vw,4rem); align-items:center; }
@media (min-width:940px){ .hero-light .hero-grid{ grid-template-columns: 1.05fr .95fr; } }
.hero-light .eyebrow { color: var(--amber-accessible); }
.hero-light h1 { color: var(--ink); }
.hero-light .hl { color: var(--blue); }
.hero-light .lede { color: var(--ink-2); margin-top: 1rem; max-width: 42ch; }
.hero-punchline { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-lg); margin: .75rem 0 0; color: var(--ink); letter-spacing: -.01em; }
.hero-light .hero-cta { display:flex; flex-wrap:wrap; gap:.9rem; margin-top: 1.25rem; }
.hero-light .btn-primary { animation: cta-breathe 3.2s ease-in-out infinite; }
.privacy-pill { display:inline-flex; align-items:center; gap:.5rem; margin-top:1.5rem; padding:.55rem .95rem; border-radius:99px; background:#e1f7ee; color:#0c7a4f; font-size:1rem; font-weight:600; }
.privacy-pill svg { color: var(--green); flex:none; }
.privacy-pill strong { color:#0a5c3c; }

/* Faixa de confiança */
.trust-bar { background:#0E1C36; color:#dce6fb; }
.trust-bar-inner { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:.55rem 1.1rem; padding:.95rem 0; font-size:.98rem; }
.trust-item b { color:#fff; font-weight:700; }
.trust-sep { width:5px; height:5px; border-radius:50%; background:#4a90e2; opacity:.6; }
@media (max-width:640px){ .trust-sep{ display:none; } .trust-bar-inner{ gap:.35rem 1rem; } }

/* Recursos / features */
.legend { display:block; margin-top:.7rem; font-size:.95rem; color: var(--ink-2); }
.features { display:grid; gap:1.25rem; grid-template-columns:1fr; }
@media (min-width:760px){ .features{ grid-template-columns:1fr 1fr; } }
.feat-group { background:#fff; border:1px solid var(--rule); border-radius:var(--radius); padding:1.6rem 1.7rem; box-shadow: var(--shadow); }
.feat-h { display:flex; align-items:center; gap:.6rem; font-size:1.2rem; margin-bottom:1.1rem; }
.feat-ico { font-size:1.3rem; line-height:1; }
.feat-group ul { list-style:none; margin:0; padding:0; display:grid; gap:.9rem; }
.feat-group li { font-size:1.0625rem; color: var(--ink-2); line-height:1.5; }
.feat-group li b { color: var(--ink); font-weight:700; }
.feat-group li em { color: var(--blue); font-style:normal; font-weight:600; }
.tag-done, .tag-soon { display:inline-block; font-size:.75rem; font-weight:800; letter-spacing:.02em; text-transform:uppercase; padding:.13rem .45rem; border-radius:6px; font-family:var(--font-brand); vertical-align:middle; margin-right:.35rem; }
.tag-done { background:#d8f6ea; color:#0c7a4f; }
.tag-soon { background:#fdeccb; color:#8a5600; }
.roadmap-line { max-width:820px; margin:2rem auto 0; text-align:center; color:var(--ink-2); font-size:1.0625rem; background:#fff; border:1px dashed #cfd9e8; border-radius:var(--radius); padding:1.2rem 1.5rem; }
.roadmap-line b { color:var(--ink); }

/* ===== Twix — medalhão Modo Família ===== */
.twix-wrap { margin:0; display:flex; flex-direction:column; align-items:center; gap:1.1rem; }
.twix-img {
  display:block; width:100%; max-width:560px; height:auto; aspect-ratio:16/9;
  border-radius:20px; object-fit:cover;
  box-shadow: 0 0 0 3px #E8930A, 0 0 0 6px #1B5ED8, 0 22px 50px rgba(8,18,40,.45);
}
@media (min-width:940px) { .twix-img { max-width:none; } }
.twix-caption { font-family:var(--font-brand); font-weight:800; font-size:1.15rem; color:#ffce85; text-align:center; margin:0; }

/* Permissões tranquilizadoras */
.perm-note { max-width:780px; margin:2.5rem auto 0; text-align:center; color:var(--ink-2); font-size:1.0625rem; background:#f1f6ff; border:1px solid #d6e4ff; border-radius:var(--radius); padding:1.3rem 1.6rem; }
.perm-note strong { color:var(--ink); }


/* Bandeira do Brasil — CSS puro (verde + losango amarelo + disco azul), padrão dos sites BRR */
.brazil-flag {
  position: relative; display: inline-block; width: 22px; height: 15px;
  background: #009C3B; box-shadow: inset 0 0 0 .5px rgba(255,255,255,.18);
  transform-origin: left center; animation: flag-wave 3.6s ease-in-out infinite;
  vertical-align: middle; flex-shrink: 0; margin-left: .15rem;
}
.brazil-flag::before { content: ""; position: absolute; inset: 2.5px; background: #FFDF00; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.brazil-flag::after { content: ""; position: absolute; top: 50%; left: 50%; width: 5.5px; height: 5.5px; background: #002776; border-radius: 50%; transform: translate(-50%, -50%); }
@keyframes flag-wave {
  0%, 100% { transform: rotateY(0deg) skewX(0deg) skewY(0deg); }
  25%      { transform: rotateY(-12deg) skewX(-3deg) skewY(0.6deg); }
  50%      { transform: rotateY(0deg) skewX(0deg) skewY(0deg); }
  75%      { transform: rotateY(12deg) skewX(3deg) skewY(-0.6deg); }
}

/* ===== Planos (sobre fundo escuro da section-cta) ===== */
.planos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 760px;
  margin: 2rem auto 0;
}
.plano {
  background: #fff;
  border-radius: var(--radius, 16px);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 18px 48px rgba(8, 18, 40, .28);
  display: flex;
  flex-direction: column;
  text-align: left;
}
.plano-destaque {
  outline: 3px solid var(--amber);
  box-shadow: 0 0 0 3px var(--amber), 0 18px 48px rgba(8,18,40,.34);
  position: relative;
}
.plano-tag {
  position: absolute;
  top: -0.8rem;
  left: 1.5rem;
  background: var(--amber);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 800;
  padding: .25rem .7rem;
  border-radius: 999px;
}
.plano-nome {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--ink);
  margin: 0;
}
.plano-para { color: var(--ink-2); font-size: .95rem; margin: .15rem 0 1rem; }
.plano-preco { display: flex; align-items: baseline; gap: .1rem; color: var(--ink); }
.plano-preco .moeda { font-size: 1.3rem; font-weight: 700; }
.plano-preco .valor { font-size: 3.1rem; font-weight: 800; font-family: var(--font-display); line-height: 1; letter-spacing: -.02em; }
.plano-preco .cent { font-size: 1.6rem; font-weight: 700; }
.plano-preco .por { font-size: 1rem; color: var(--ink-2); margin-left: .25rem; }
.plano-anual { color: #0e7a50; font-weight: 600; font-size: .9rem; margin: .35rem 0 1.1rem; }
/* #0e7a50 sobre #ffffff = 5.6:1 — passa WCAG AA para texto pequeno */
.plano-itens { list-style: none; padding: 0; margin: 0 0 1.1rem; display: flex; flex-direction: column; gap: .55rem; }
.plano-itens li { position: relative; padding-left: 1.6rem; color: var(--ink); font-size: .98rem; }
.plano-itens li::before {
  content: "";
  position: absolute; left: 0; top: .15rem;
  width: 1.1rem; height: 1.1rem; border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/0.9rem no-repeat;
}
.plano-ancora {
  margin-top: auto;
  font-size: .9rem;
  color: var(--ink-2);
  border-top: 1px solid var(--rule);
  padding-top: .9rem;
  line-height: 1.45;
}
.soon-link { color: #fff; text-decoration: underline; }
/* grid .planos usa auto-fit/minmax — colapsa automaticamente abaixo de 280px por coluna */

/* ===== Lista de espera — formulário ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Seção principal de lista de espera (dentro da .section-cta) */
.waitlist-section {
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: center;
}
.waitlist-heading {
  font-family: var(--font-brand);
  font-size: clamp(1.2rem, 1rem + 1vw, 1.55rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.25rem;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: stretch;
}
.waitlist-input {
  width: 100%;
  padding: .9rem 1.1rem;
  font-size: 1.0625rem;
  font-family: var(--font-body);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.12);
  color: #fff;
  outline: 2px solid transparent;
  transition: border-color .2s ease, background .2s ease, outline-color .15s ease;
}
.waitlist-input::placeholder { color: rgba(255,255,255,.55); }
.waitlist-input:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-color: #fff; background: rgba(255,255,255,.18); }
.waitlist-btn { width: 100%; }
.waitlist-trust {
  font-size: .95rem;
  color: #dce6fb;
  min-height: 1.4em;
  margin: 0;
}
.waitlist-trust--ok    { color: #6fe3ad; font-weight: 600; }
.waitlist-trust--error { color: #ffb3ae; font-weight: 600; }
.section-cta .waitlist-trust--error { background: rgba(255,90,70,.16); border-radius: 8px; padding: .5rem .75rem; display: inline-block; }

/* Mini-CTA de lista de espera pós-dor */
.section-mini-cta {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.mini-waitlist-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.mini-waitlist-title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(1.1rem, .9rem + 1vw, 1.35rem);
  color: var(--ink);
  margin: 0;
}
.waitlist-form--inline .waitlist-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: stretch;
  width: 100%;
  max-width: 580px;
}
.waitlist-form--inline .waitlist-input {
  flex: 1 1 220px;
  background: #fff;
  border: 1.5px solid #c7d6f2;
  color: var(--ink);
}
.waitlist-form--inline .waitlist-input::placeholder { color: var(--ink-2); opacity: .7; }
.waitlist-form--inline .waitlist-input:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-color: var(--blue); }
.waitlist-form--inline .waitlist-btn { flex-shrink: 0; }
.waitlist-form--inline .waitlist-trust { font-size: .9rem; color: var(--ink-2); min-height: 1.2em; }
.waitlist-form--inline .waitlist-trust--ok    { color: #0e7a50; font-weight: 600; }
.waitlist-form--inline .waitlist-trust--error { color: var(--red); font-weight: 600; }

/* ============================================================
   Reestruturação do conselho (14/06) — cão no hero, moat,
   planos ancorados, oferta fundador, CTA final.
   ============================================================ */

/* Hero: selos de diferencial */
.hero-badges { list-style:none; margin:1.5rem 0 0; padding:0; display:flex; flex-wrap:wrap; gap:.6rem; }
.hero-badges li {
  display:inline-flex; align-items:center; gap:.4rem;
  background:#eef4ff; color:var(--ink); border:1px solid #d6e4ff;
  border-radius:99px; padding:.4rem .85rem; font-size:.95rem; font-weight:600;
}
.hero-badges li::before {
  content:""; width:1rem; height:1rem; flex:none;
  background:var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/.7rem no-repeat;
  border-radius:99px;
}
.hero-anchor { margin-top:1.25rem; font-size:1rem; color:var(--ink-2); }
.hero-anchor strong { color:var(--ink); }

/* Hero: cena do cão de guarda (imagem inteira, sem corte) */
.hero-dog-wrap { margin:0; display:flex; flex-direction:column; gap:.8rem; }
.hero-dog {
  display:block; width:100%; height:auto; border-radius:20px;
  box-shadow: 0 0 0 3px #E8930A, 0 0 0 6px #1B5ED8, 0 24px 55px rgba(8,18,40,.28);
  animation: dog-in .6s .05s ease-out both;
}
/* entrada do Twix — começa em opacity .25 (não 0) pra não atrasar o LCP */
@keyframes dog-in { from { opacity: .25; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero-dog-cap { text-align:center; font-family:var(--font-brand); font-weight:700; font-size:1.05rem; color:var(--amber-accessible); margin:0; }

/* Cards de dor: remate "O Barra bloqueia" */
.card-barra {
  margin-top:.9rem; padding-top:.75rem; border-top:1px solid var(--rule);
  font-family:var(--font-brand); font-weight:700; color:#0c7a4f; font-size:1rem;
}
.card-barra::before { content:"✓ "; }

/* Cards "por que é diferente" */
.card.why { border-left:4px solid var(--blue); }
.card.why h3 { color:var(--blue-deep); }

/* Âncora de preço (acima dos planos, na banda escura) */
.price-anchor {
  max-width:680px; margin:0 auto 2rem; text-align:center;
  font-size:1.15rem; line-height:1.6; color:#dce6fb;
}
.price-anchor strong { color:#fff; }

/* Planos: preço anual grande + linha mensal */
.plano-mes { color:var(--ink-2); font-size:.95rem; margin:.35rem 0 1.1rem; }
.plano-mes strong { color:#0e7a50; }

/* Oferta Fundador */
.founder {
  max-width:640px; margin:2.5rem auto 0; padding:1.75rem 1.5rem;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2);
  border-radius:var(--radius); text-align:center;
}
.founder-title { font-family:var(--font-display); font-weight:700; font-size:clamp(1.3rem,1rem+1.2vw,1.65rem); color:#fff; margin:0 0 .4rem; letter-spacing:-.01em; }
.founder-sub { color:#dce6fb; font-size:1rem; margin:0 0 1.1rem; }
.founder-perks { list-style:none; margin:0 auto 1.4rem; padding:0; display:grid; gap:.55rem; max-width:430px; text-align:left; }
.founder-perks li { position:relative; padding-left:1.7rem; color:#eaf1ff; font-size:1rem; }
.founder-perks li::before {
  content:""; position:absolute; left:0; top:.15rem; width:1.2rem; height:1.2rem;
  background:var(--amber) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/.8rem no-repeat;
  border-radius:99px;
}
.founder-perks li strong { color:#ffce85; }

/* Selo da causa animal */
.cause-badge {
  max-width:640px; margin:1.75rem auto 0; text-align:center;
  color:#eaf1ff; font-size:1rem;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.2);
  border-radius:99px; padding:.65rem 1.25rem;
}
.cause-badge strong { color:#ffce85; }

/* CTA final */
.final-cta { background:var(--bg-warm); }
.final-cta-inner { text-align:center; }
.final-cta-inner p { color:var(--ink-2); font-size:var(--fs-lg); margin:1rem auto 1.75rem; max-width:48ch; }

/* ===== Captura no hero + prova social ===== */
.hero-waitlist { margin-top: 1.75rem; align-items: flex-start; }
.hero-waitlist .waitlist-row { max-width: 540px; }
.hero-waitlist .waitlist-input { flex: 1 1 240px; min-height: 56px; }
.hero-secondary { margin-top: 1rem; }
.hero-secondary a { font-weight: 600; }
.hero-secondary a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* contador honesto da lista — some por padrão, JS exibe só com número real */
.social-count {
  margin-top: 1rem; font-size: 1rem; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: .5rem;
}
.social-count::before {
  content: ""; width: .55rem; height: .55rem; border-radius: 50%; flex: none;
  background: var(--green); box-shadow: 0 0 0 4px rgba(29,184,122,.18);
}
.social-count--dark { color: #eaf1ff; justify-content: center; margin: .25rem auto 1.1rem; }

/* depoimento real (estrutura pronta — preencher com prova social verificada) */
.testimonial {
  margin: 0 auto 1.4rem; max-width: 460px; padding: 1.1rem 1.3rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  border-left: 3px solid var(--amber); border-radius: var(--radius-sm); text-align: left;
}
.testimonial p { color: #eaf1ff; font-size: 1.05rem; line-height: 1.5; }
.testimonial cite { display: block; margin-top: .6rem; color: #ffce85; font-style: normal; font-weight: 600; font-size: .95rem; }
