/* Fenix WP: estilos do site. As cores e fontes vêm de tokens.css. */

*,
*::before,
*::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--graphite);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg { max-width: 100%; }

a { color: inherit; }

p, ul, ol, dl, dd, figure, h1, h2, h3, h4 { margin: 0; }
p { text-wrap: pretty; }
ul, ol { padding: 0; list-style: none; }

code {
  font-family: var(--f-mono);
  font-size: .82em;
  background: var(--ember);
  color: var(--graphite);
  padding: .1em .4em;
  border-radius: 4px;
  overflow-wrap: anywhere;
}

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -.022em;
  line-height: 1.08;
  text-wrap: balance;
}

h3 {
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.2;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip {
  position: absolute;
  left: 12px;
  top: -64px;
  z-index: 100;
  background: var(--graphite);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip:focus { top: 12px; }

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 20px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
}

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font: 700 16px/1.15 var(--f-body);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, transform .15s ease;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--wa { background: var(--wa); color: var(--white); }
.btn--wa:hover { background: var(--wa-hover); }
.btn--wa:active { transform: translateY(1px); }
.btn--lg { min-height: 58px; padding: 16px 28px; font-size: 18px; }
.btn--sm { min-height: 40px; padding: 9px 16px; font-size: 14px; }
.btn--sm svg { width: 18px; height: 18px; }
.btn:focus-visible { outline-color: var(--graphite); }

/* ---------- Topo ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__in {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.025em;
  text-decoration: none;
  color: var(--graphite);
}
.brand svg { width: 30px; height: 30px; flex: none; }
.brand b { color: var(--red); font-weight: 800; }

.nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 500;
}
.nav a { color: var(--steel); text-decoration: none; }
.nav a:hover { color: var(--graphite); }

.topbar__actions { display: flex; align-items: center; gap: 12px; }

.lang {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--steel);
  text-decoration: none;
}
.lang:hover { color: var(--graphite); background: var(--mist); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--mist);
  padding-block: clamp(48px, 8vw, 96px) clamp(56px, 8vw, 104px);
}
.hero__mark {
  position: absolute;
  right: -140px;
  top: -60px;
  width: 620px;
  height: 620px;
  opacity: .06;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.hero__copy { display: grid; gap: 22px; justify-items: start; }
.hero h1 { font-size: clamp(40px, 6vw, 70px); line-height: 1.06; letter-spacing: -.03em; }
.hero h1 em { font-style: normal; color: var(--red); }

.lead {
  max-width: 34em;
  font-size: clamp(18px, 1.6vw, 21px);
  color: var(--steel);
}

.hero__cta { display: grid; gap: 10px; justify-items: start; }
.hint { font-size: 14.5px; color: var(--steel); }

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  width: 100%;
  max-width: 560px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.facts li { display: grid; font-size: 14px; color: var(--steel); line-height: 1.35; }
.facts strong {
  font-family: var(--f-display);
  font-size: 23px;
  letter-spacing: -.02em;
  color: var(--graphite);
  font-variant-numeric: tabular-nums;
}

/* Relatório de exemplo, no hero */
.report {
  width: 100%;
  max-width: 460px;
  justify-self: end;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(30, 37, 48, .05), 0 28px 56px -28px rgba(30, 37, 48, .32);
}
.report__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--graphite);
  color: var(--white);
}
.report__head svg { width: 30px; height: 30px; flex: none; }
.report__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #C4CAD3;
}
.report__site { font-family: var(--f-mono); font-size: 14px; }
.report__tag {
  margin-left: auto;
  padding: 2px 9px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.report__list { display: grid; padding: 6px 18px; }
.report__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.4;
}
.report__list li:last-child { border-bottom: 0; }
.report__list svg {
  flex: none;
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 50%;
  background: var(--ok-bg);
  color: var(--ok);
}
.report__list small { display: block; margin-top: 2px; font-size: 13px; color: var(--steel); }
.report__list code { font-size: 12px; }
.report__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--mist);
  font-size: 13.5px;
  color: var(--steel);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--ok-bg);
  color: var(--ok);
  font-size: 13px;
  font-weight: 700;
}
.pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

/* ---------- Seções ---------- */

.section { padding-block: clamp(64px, 9vw, 112px); }
.section--mist { background: var(--mist); }
.section--dark { background: var(--graphite); color: var(--white); }

.section__head {
  display: grid;
  gap: 14px;
  max-width: 700px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section h2 { font-size: clamp(32px, 4.4vw, 50px); }
.section__head > p:not(.eyebrow) { font-size: clamp(17px, 1.4vw, 19px); color: var(--steel); }
.section--dark .section__head > p:not(.eyebrow) { color: #C4CAD3; }
.section--dark .eyebrow { color: #F0A49C; }

.section__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: clamp(36px, 5vw, 52px);
}
.section__cta p { font-size: 15px; color: var(--steel); }

/* Sinais */
.signals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 28px;
}
.signal {
  display: grid;
  gap: 10px;
  align-content: start;
  padding-top: 20px;
  border-top: 2px solid var(--graphite);
}
.signal svg { width: 26px; height: 26px; color: var(--red); }
.signal h3 { font-size: 19px; }
.signal p { font-size: 15.5px; color: var(--steel); }

/* Como funciona */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  counter-reset: passo;
}
.step {
  counter-increment: passo;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 26px 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.step::before {
  content: counter(passo);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--red);
}
.step h3 { font-size: 20px; }
.step p { font-size: 15.5px; color: var(--steel); }

.notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  font-size: 16px;
}
.notice svg { width: 22px; height: 22px; flex: none; margin-top: 2px; color: var(--red); }

/* O que eu faço */
.approach {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.approach .section__head { position: sticky; top: 110px; margin-bottom: 0; }
.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 32px;
}
.service {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 14px;
  align-content: start;
}
.service__icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ember);
  color: var(--red);
}
.service__icon svg { width: 16px; height: 16px; }
.service h3 { align-self: center; font-size: 18px; }
.service p { grid-column: 2; font-size: 15.5px; color: var(--steel); }

.sample {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 18px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.sample img {
  flex: none;
  width: 92px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 8px 18px -8px rgba(30, 37, 48, .45);
}
.sample__text { display: grid; gap: 4px; }
.sample__text p { font-size: 15px; color: var(--steel); }
.sample a { font-weight: 700; color: var(--red); }

/* Preços */
.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 980px;
}
.plan {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 28px 28px;
  background: var(--white);
  color: var(--graphite);
  border-radius: 18px;
}
.plan h3 { font-size: 24px; }
.plan__for { font-size: 15.5px; color: var(--steel); }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(46px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.plan__price small {
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}
.plan__time { margin-top: -6px; font-size: 14.5px; color: var(--steel); }
.plan ul {
  flex: 1;
  display: grid;
  gap: 9px;
  align-content: start;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.plan li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; }
.plan li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--ok); }
.plan .btn { width: 100%; }

.plans__note {
  display: grid;
  gap: 8px;
  max-width: 780px;
  margin-top: 30px;
  font-size: 15.5px;
  color: #C4CAD3;
}
.plans__note strong { color: var(--white); }

/* Garantia */
.guarantee {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.guarantee__big {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(120px, 17vw, 210px);
  line-height: .82;
  letter-spacing: -.045em;
  color: var(--red);
}
.guarantee__big span {
  display: block;
  margin-top: 16px;
  font-size: .2em;
  letter-spacing: -.02em;
  color: var(--graphite);
}
.guarantee__text { display: grid; gap: 16px; }
.guarantee__text > p { font-size: 18px; }
.checks { display: grid; gap: 10px; }
.checks li { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; }
.checks svg { width: 18px; height: 18px; flex: none; margin-top: 4px; color: var(--ok); }
.guarantee__extra {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 15.5px;
  color: var(--steel);
}

/* Antes de chamar */
.facts3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.fact { display: grid; gap: 12px; align-content: start; }
.fact h3 { font-size: 20px; }
.fact p,
.fact li { font-size: 15.5px; color: var(--steel); }
.fact ul { display: grid; gap: 8px; }
.fact li { position: relative; padding-left: 18px; }
.fact li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

/* Dúvidas */
.faq {
  display: grid;
  max-width: 840px;
  border-top: 1px solid var(--line);
}
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 21px);
  letter-spacing: -.015em;
  list-style: none;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--f-body);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: var(--red);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { max-width: 68ch; padding-bottom: 22px; color: var(--steel); }

/* Chamada final */
.final { background: var(--ember); }
.final__in { display: grid; gap: 22px; justify-items: start; max-width: 780px; }
.final h2 { font-size: clamp(36px, 5vw, 58px); }
.final p { font-size: 19px; color: #3F4652; }

/* ---------- Rodapé ---------- */

.footer {
  background: var(--graphite);
  color: #C4CAD3;
  padding-block: 56px 40px;
  font-size: 15px;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.footer .brand { color: var(--white); }
.footer__tag { max-width: 34ch; margin-top: 12px; }
.footer h2 {
  margin-bottom: 14px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
}
.footer ul { display: grid; gap: 8px; }
.footer a { color: #E8EBEF; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.linklike {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: #E8EBEF;
  cursor: pointer;
}
.linklike:hover { text-decoration: underline; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid #333B48;
  font-size: 13.5px;
}

/* Botão flutuante */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-logo);
  color: var(--white);
  box-shadow: 0 10px 24px -6px rgba(30, 37, 48, .45);
  transition: transform .15s ease, background-color .15s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }

/* Aviso de cookies (só aparece com Google Ads configurado) */
.consent {
  position: fixed;
  left: 16px;
  right: 96px;
  bottom: 16px;
  z-index: 70;
  display: grid;
  gap: 14px;
  max-width: 560px;
  padding: 18px 20px;
  background: var(--graphite);
  color: #E8EBEF;
  border-radius: 14px;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .5);
  font-size: 14.5px;
}
.consent a { color: var(--white); }
.consent__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.consent button {
  padding: 10px 16px;
  border: 1px solid #5B6573;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font: 700 14px/1 var(--f-body);
  cursor: pointer;
}
.consent button[data-consent="aceito"] {
  background: var(--wa);
  border-color: var(--wa);
  color: var(--white);
}

/* Faixa de sugestão de idioma (criada pelo main.js) */
.lang-hint {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 14px;
  padding: 10px 52px 10px 20px;
  background: var(--graphite);
  color: #E8EBEF;
  font-size: 14.5px;
  text-align: center;
}
.lang-hint a { color: var(--white); font-weight: 700; }
.lang-hint button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #C4CAD3;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.lang-hint button:hover { color: var(--white); background: rgba(255, 255, 255, .08); }

/* Páginas simples (privacidade, 404) */
.page { padding-block: clamp(56px, 8vw, 96px); }
.prose { display: grid; gap: 16px; max-width: 720px; }
.prose h1 { font-size: clamp(34px, 5vw, 50px); }
.prose h2 { margin-top: 12px; font-size: 24px; }
.prose p,
.prose li { color: #3F4652; }
.prose ul { display: grid; gap: 6px; padding-left: 22px; list-style: disc; }
.prose strong { color: var(--graphite); }
.prose .step a,
.prose a { color: var(--red); }
.prose .btn { color: var(--white); }

.accept {
  display: grid;
  gap: 14px;
  justify-items: start;
  margin-top: 16px;
  padding: 24px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.accept h2 { margin-top: 0; }
.accept__quote { font-weight: 600; color: var(--graphite); }

.step a,
.fact a,
.faq a { color: var(--red); font-weight: 600; }

/* ---------- Responsivo ---------- */

@media (max-width: 1000px) {
  .signals { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .topbar__actions { margin-left: auto; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__mark { width: 420px; height: 420px; right: -160px; }
  .report { justify-self: start; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .approach { grid-template-columns: minmax(0, 1fr); }
  .approach .section__head { position: static; }
  .facts3 { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 760px) {
  .plans { grid-template-columns: minmax(0, 1fr); }
  .guarantee { grid-template-columns: minmax(0, 1fr); }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 600px) {
  .services { grid-template-columns: minmax(0, 1fr); }
  .signals { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .sample { align-items: flex-start; }
}

@media (max-width: 420px) {
  .topbar .btn--sm span { display: none; }
  .topbar .btn--sm { padding-inline: 12px; }
  .btn--lg { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { transition: none !important; }
}
