/* ============================================================================
   M&M SOLUÇÕES CONTÁBEIS — styles.css
   Contabilidade on-line para médicos · Design system premium v2
   Paleta: azul-marinho (logo) · azul royal · branco · cinza-claro · verde WhatsApp
   ============================================================================ */

/* ---------- Fontes ---------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Cores */
  --navy-950: #081426;
  --navy-900: #0C1D3A;
  --navy:     #12294E;   /* azul do logo */
  --navy-700: #1C3A6B;
  --blue:     #1E56C8;   /* acento royal */
  --blue-400: #4F83E8;
  --blue-300: #8FB4F5;
  --blue-soft:#EAF1FD;
  --blue-mist:#F1F6FE;
  --green:    #16A34A;   /* WhatsApp / conversão */
  --green-dark:#128A3E;
  --green-soft:#E8F7EE;
  --bg:       #F7F9FC;
  --surface:  #FFFFFF;
  --line:     #E3E9F2;
  --text:     #22314A;
  --muted:    #5B6B84;
  --muted-2:  #8494AB;

  /* Gradientes */
  --grad-blue: linear-gradient(135deg, #1E56C8 0%, #3B74E0 55%, #12294E 130%);
  --grad-navy: linear-gradient(160deg, #0C1D3A 0%, #12294E 55%, #1C3A6B 100%);
  --grad-icon: linear-gradient(140deg, #EAF1FD 0%, #DBE8FC 100%);

  /* Tipografia */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Raios */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  /* Sombras (tingidas de navy, nunca preto puro) */
  --sh-xs: 0 1px 3px rgba(18, 41, 78, .07);
  --sh-sm: 0 3px 12px rgba(18, 41, 78, .08);
  --sh-md: 0 12px 32px rgba(18, 41, 78, .11);
  --sh-lg: 0 26px 64px rgba(18, 41, 78, .16);
  --sh-blue: 0 10px 28px rgba(30, 86, 200, .35);
  --sh-green: 0 10px 28px rgba(22, 163, 74, .35);

  /* Espaçamento de seção */
  --sect-y: clamp(4.2rem, 8vw, 7.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
ul, ol { padding-left: 1.2rem; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.16;
  letter-spacing: -.02em;
  text-wrap: balance;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.45rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 700; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

:focus { outline: 2.5px solid var(--blue); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 2.5px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

::selection { background: rgba(30, 86, 200, .18); }

/* ---------- Utilitários ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }
.section { position: relative; padding: var(--sect-y) 0 calc(var(--sect-y) * 1.1); }
.section--alt { background: var(--surface); }
.section--soft { background: linear-gradient(180deg, var(--blue-mist) 0%, var(--bg) 100%); }
.section--navy { background: var(--grad-navy); overflow: hidden; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #C9D6EA; }

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.kicker::before { content: ""; width: 26px; height: 2.5px; background: var(--grad-blue); border-radius: 2px; }
.section--navy .kicker { color: var(--blue-300); }
.section--navy .kicker::before { background: var(--blue-300); }

.head { max-width: 780px; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.head--center { margin-left: auto; margin-right: auto; text-align: center; }
.head--center .kicker { justify-content: center; }
.head p { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.12rem); }
.section--navy .head p { color: #C9D6EA; }

.hl { color: var(--blue); }
.hl--green { color: var(--green); }

.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ---------- Elementos decorativos ---------- */
.blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  opacity: .65; z-index: 0;
}
.blob--blue   { background: radial-gradient(circle, rgba(79,131,232,.35), transparent 70%); }
.blob--soft   { background: radial-gradient(circle, rgba(219,232,252,.9), transparent 70%); }
.blob--green  { background: radial-gradient(circle, rgba(22,163,74,.16), transparent 70%); }

.dots {
  position: absolute; pointer-events: none; z-index: 0; opacity: .5;
  background-image: radial-gradient(rgba(30,86,200,.35) 1.6px, transparent 1.6px);
  background-size: 20px 20px;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes floaty-soft {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-7px) rotate(1.2deg); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, .45); }
  70%  { box-shadow: 0 0 0 16px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
@keyframes shine {
  0%   { transform: translateX(-130%) skewX(-18deg); }
  60%, 100% { transform: translateX(230%) skewX(-18deg); }
}
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

/* ---------- Botões ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: .95rem 1.7rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  text-align: center;
  overflow: hidden;
}
.btn:active { transform: scale(.97); }
.btn .icon { width: 1.25em; height: 1.25em; }

/* Botão principal — azul da marca com ícone do WhatsApp */
.btn--wa {
  background: var(--grad-blue); color: #fff;
  box-shadow: var(--sh-blue);
}
.btn--wa::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 42%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.32), transparent);
  transform: translateX(-130%) skewX(-18deg);
  animation: shine 4.2s ease-in-out infinite;
  pointer-events: none;
}
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(30, 86, 200, .45); }

/* Botão verde — usado em seções navy e no CTA final */
.btn--green {
  background: var(--green); color: #fff;
  box-shadow: var(--sh-green);
}
.btn--green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(22, 163, 74, .45); }

.btn--navy { background: var(--navy); color: #fff; box-shadow: var(--sh-sm); }
.btn--navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--sh-md); }

.btn--ghost { background: var(--surface); color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.section--navy .btn--ghost { color: #fff; background: transparent; border-color: rgba(255,255,255,.35); }
.section--navy .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.06rem; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.header.is-scrolled { border-color: var(--line); box-shadow: var(--sh-xs); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand img { height: 52px; width: auto; }

.nav { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 1.7rem); }
.nav__link {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  color: var(--text); padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease;
  display: inline-flex; align-items: center; gap: .4rem;
}
.nav__link:hover, .nav__link.is-active { color: var(--blue); border-color: var(--blue); }
.nav__link--ig .icon { width: 18px; height: 18px; }
.nav .btn { padding: .7rem 1.35rem; font-size: .92rem; }

.burger {
  display: none;
  background: none; border: 0; cursor: pointer; padding: .5rem;
  flex-direction: column; gap: 5px;
}
.burger span { width: 26px; height: 2.6px; background: var(--navy); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.burger.is-open span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -10%, var(--blue-soft) 0%, transparent 60%),
    radial-gradient(700px 420px at -8% 108%, #EDF3FB 0%, transparent 55%),
    linear-gradient(180deg, #FDFEFF 0%, var(--bg) 100%);
  padding: clamp(3rem, 6.5vw, 5.2rem) 0 clamp(3.4rem, 6.5vw, 5.6rem);
}
.hero .blob--1 { width: 560px; height: 560px; top: -220px; right: -140px; }
.hero .blob--2 { width: 420px; height: 420px; bottom: -200px; left: -160px; }
.hero .dots--1 { width: 190px; height: 150px; top: 84px; left: max(1rem, calc(50vw - 620px)); opacity: .35; }

.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.06fr .94fr;
  gap: clamp(2.2rem, 5vw, 4.2rem); align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: .45rem 1.05rem;
  font-family: var(--font-display); font-size: .82rem; font-weight: 700;
  color: var(--navy); box-shadow: var(--sh-xs);
  margin-bottom: 1.4rem;
}
.hero__badge .icon { color: var(--green); }
.hero h1 { margin-bottom: .55em; }
.hero h1 .mark {
  color: var(--blue);
  background-image: linear-gradient(180deg, transparent 72%, rgba(30,86,200,.18) 72%);
  border-radius: 4px;
  font-style: normal;
}
.hero__sub { font-size: clamp(1.02rem, 1.8vw, 1.16rem); color: var(--muted); max-width: 56ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.9rem; }
.hero__note { font-size: .86rem; color: var(--muted-2); margin-top: 1.15rem; display: flex; align-items: center; gap: .45rem; }
.hero__note .icon { color: var(--blue); }

/* Foto do médico + composição gráfica */
.hero__media { position: relative; z-index: 1; }
.hero__ring {
  position: absolute; top: -34px; left: -34px; width: 130px; height: 130px;
  border: 10px solid rgba(30, 86, 200, .16); border-radius: 50%;
  z-index: 0;
}
.hero__ring::after {
  content: ""; position: absolute; inset: 18px;
  border: 5px solid rgba(30, 86, 200, .1); border-radius: 50%;
}
.hero__dots {
  position: absolute; right: -26px; bottom: 46px; width: 150px; height: 130px;
  background-image: radial-gradient(rgba(30,86,200,.4) 1.7px, transparent 1.7px);
  background-size: 19px 19px;
  z-index: 0; opacity: .55;
}
.hero__photo {
  position: relative; z-index: 1;
  border-radius: 34px 34px 34px 120px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--grad-blue);
}
.hero__photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(200deg, rgba(30,86,200,.16) 0%, transparent 42%);
  pointer-events: none;
}
.hero__img { aspect-ratio: 4 / 4.4; object-fit: cover; object-position: 62% 22%; width: 100%; }

.hero__curve {
  position: absolute; z-index: 2; inset: auto -8% -5% -10%;
  width: 118%; height: auto; pointer-events: none;
}
.hero__curve path { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: draw-line 1.6s .5s ease-out forwards; }

.hero__card {
  position: absolute; z-index: 3; left: -1.6rem; bottom: 2rem;
  background: var(--surface); border-radius: var(--r-md);
  box-shadow: var(--sh-md); border: 1px solid var(--line);
  padding: .85rem 1.15rem;
  display: flex; align-items: center; gap: .75rem;
  max-width: 272px;
  animation: floaty 6s ease-in-out infinite;
}
.hero__card-ic {
  width: 42px; height: 42px; border-radius: 13px; flex-shrink: 0;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center;
}
.hero__card-ic .icon { width: 22px; height: 22px; }
.hero__card strong { font-family: var(--font-display); font-size: .9rem; color: var(--navy); display: block; }
.hero__card span { font-size: .78rem; color: var(--muted); }

.hero__chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: .5rem .95rem;
  font-family: var(--font-display); font-size: .8rem; font-weight: 700; color: var(--navy);
  box-shadow: var(--sh-md);
}
.hero__chip .icon { width: 17px; height: 17px; color: var(--blue); }
.hero__chip--1 { top: 1.6rem; right: -1rem; animation: floaty-soft 5s .6s ease-in-out infinite; }
.hero__chip--1 .icon { color: var(--green); }
.hero__chip--2 { top: 42%; right: -1.9rem; animation: floaty-soft 6.5s 1.1s ease-in-out infinite; }

/* Selos de confiança */
.trustbar { position: relative; z-index: 1; margin-top: clamp(2.8rem, 5vw, 4rem); }
.trustbar ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.trustbar li {
  display: flex; align-items: center; gap: .65rem;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--r-md); padding: .95rem 1.05rem;
  font-family: var(--font-display); font-size: .88rem; font-weight: 600; color: var(--navy);
  box-shadow: var(--sh-xs);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.trustbar li:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); border-color: #CBD8EC; }
.trustbar .icon { color: var(--blue); width: 21px; height: 21px; }

/* ---------- Cards de dor ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.pain {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.4rem 1.3rem;
  display: flex; flex-direction: column; gap: .75rem;
  box-shadow: var(--sh-xs);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.pain:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: #CBD8EC; }
.pain__ic {
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--grad-icon); color: var(--blue);
  display: grid; place-items: center;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.pain__ic .icon { width: 23px; height: 23px; }
.pain:hover .pain__ic { background: var(--grad-blue); color: #fff; transform: scale(1.06); }
.pain p { font-family: var(--font-display); font-weight: 600; font-size: .96rem; color: var(--navy); margin: 0; }
.pain-close {
  margin-top: 2.4rem; text-align: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--navy);
}
.pain-close .hl { color: var(--green); }

/* ---------- Cards genéricos (solução / serviços) ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.card {
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.9rem 1.7rem;
  box-shadow: var(--sh-xs);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: #CBD8EC; }
.card:hover::before { transform: scaleX(1); }
.card__ic {
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--grad-icon); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 1.15rem;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.card__ic .icon { width: 27px; height: 27px; }
.card:hover .card__ic { background: var(--grad-blue); color: #fff; transform: scale(1.06) rotate(-3deg); }
.card h3 { margin-bottom: .45em; }
.card p { color: var(--muted); font-size: .95rem; }

/* ---------- Autoridade (split) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.4rem, 5vw, 4.4rem); align-items: center; }
.split__media { position: relative; }
.split__media::before {
  content: ""; position: absolute; inset: 10% -7% -7% 12%;
  background: var(--grad-blue);
  border-radius: var(--r-lg); opacity: .13; z-index: 0;
}
.split__frame {
  position: relative; z-index: 1;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg);
}
.split__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(210deg, rgba(18,41,78,.0) 55%, rgba(18,41,78,.35) 100%);
  pointer-events: none;
}
.split__frame img { aspect-ratio: 4/3.1; object-fit: cover; width: 100%; }
.split__badge {
  position: absolute; z-index: 2; right: -1rem; bottom: -1.2rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--sh-md);
  padding: .9rem 1.2rem;
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--navy);
  animation: floaty 7s ease-in-out infinite;
}
.split__badge .icon { width: 22px; height: 22px; color: var(--blue); }
.split__dots {
  position: absolute; z-index: 0; left: -30px; top: -30px; width: 140px; height: 120px;
  background-image: radial-gradient(rgba(30,86,200,.4) 1.7px, transparent 1.7px);
  background-size: 19px 19px; opacity: .5;
}
.quote-band {
  margin-top: 2.6rem;
  background: var(--surface); border-left: 4px solid var(--green);
  border-radius: var(--r-md); box-shadow: var(--sh-sm);
  padding: 1.4rem 1.7rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--navy);
}

/* ---------- Seção educativa SEO ---------- */
.edu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; margin-top: 1rem; }
.edu {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.6rem 1.6rem;
  box-shadow: var(--sh-xs);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.edu:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); border-color: #CBD8EC; }
.edu h3 { display: flex; align-items: center; gap: .65rem; }
.edu h3 .edu__ic {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: var(--grad-icon); color: var(--blue);
  display: grid; place-items: center;
}
.edu h3 .icon { width: 20px; height: 20px; }
.edu p { color: var(--muted); font-size: .95rem; }
.edu a { font-weight: 600; }
.edu a:hover { text-decoration: underline; }

/* ---------- Para quem é ---------- */
.fit-list {
  list-style: none; padding: 0; margin: 0 0 2.2rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem 1.6rem;
}
.fit-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: .95rem 1.15rem;
  font-weight: 500; color: var(--text);
  box-shadow: var(--sh-xs);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.fit-list li:hover { transform: translateX(4px); border-color: #CBD8EC; box-shadow: var(--sh-sm); }
.fit-list .icon { color: var(--green); width: 21px; height: 21px; margin-top: .15rem; }

/* ---------- Como funciona (timeline) ---------- */
.section--navy .blob--nv1 { width: 520px; height: 520px; top: -260px; right: -180px; background: radial-gradient(circle, rgba(30,86,200,.4), transparent 70%); }
.section--navy .blob--nv2 { width: 420px; height: 420px; bottom: -220px; left: -160px; background: radial-gradient(circle, rgba(79,131,232,.25), transparent 70%); }

.steps {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.steps::before {
  content: ""; position: absolute; top: 44px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(143,180,245,.5) 12%, rgba(143,180,245,.5) 88%, transparent);
}
.step {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); padding: 1.7rem 1.5rem 1.6rem;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.step:hover { transform: translateY(-5px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.22); }
.step__n {
  position: relative;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad-blue);
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  display: grid; place-items: center; margin-bottom: 1.05rem;
  box-shadow: 0 6px 18px rgba(30, 86, 200, .45);
  border: 2px solid rgba(255,255,255,.25);
}
.step h3 { font-size: 1.08rem; }
.step p { color: #C9D6EA; font-size: .93rem; }

/* ---------- Documentos ---------- */
.doc-band {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-md);
  padding: clamp(1.7rem, 4vw, 2.8rem);
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(1.8rem, 4vw, 3rem);
  align-items: center;
  position: relative; overflow: hidden;
}
.doc-band::before {
  content: ""; position: absolute; top: -70px; right: -70px; width: 230px; height: 230px;
  border-radius: 50%; background: radial-gradient(circle, rgba(30,86,200,.09), transparent 70%);
}
.doc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .68rem; }
.doc-list li {
  display: flex; align-items: flex-start; gap: .65rem; font-weight: 500;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: .68rem .95rem;
}
.doc-list .icon { color: var(--green); width: 20px; height: 20px; margin-top: .2rem; }
.doc-band__media { position: relative; }
.doc-band__media img {
  border-radius: var(--r-md); box-shadow: var(--sh-md);
  aspect-ratio: 4/3.2; object-fit: cover; width: 100%;
}
.doc-band__media::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(30,86,200,.14), transparent 55%);
  pointer-events: none;
}
.doc-band__chip {
  position: absolute; z-index: 2; left: -.9rem; bottom: 1.3rem;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: .55rem 1rem;
  font-family: var(--font-display); font-size: .82rem; font-weight: 700; color: var(--navy);
  box-shadow: var(--sh-md);
  animation: floaty-soft 6s ease-in-out infinite;
}
.doc-band__chip .icon { width: 18px; height: 18px; color: var(--blue); }

/* ---------- Comparativo ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; align-items: stretch; }
.compare__col {
  border-radius: var(--r-lg); padding: 2rem 1.8rem;
  display: flex; flex-direction: column;
}
.compare__col--plain { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-xs); }
.compare__col--mm {
  background: var(--grad-navy);
  color: #fff; box-shadow: var(--sh-lg);
  border: 1px solid var(--navy-700);
  position: relative; overflow: hidden;
}
.compare__col--mm::after {
  content: ""; position: absolute; top: -40%; right: -25%;
  width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,86,200,.4), transparent 70%);
}
.compare__col h3 { font-size: 1.15rem; margin-bottom: 1.1rem; }
.compare__col--mm h3 { color: #fff; position: relative; z-index: 1; }
.compare__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; position: relative; z-index: 1; }
.compare__col li { display: flex; align-items: flex-start; gap: .6rem; font-size: .95rem; }
.compare__col--plain li { color: var(--muted); }
.compare__col--plain .icon { color: var(--muted-2); width: 19px; height: 19px; margin-top: .22rem; }
.compare__col--mm li { color: #DCE6F5; }
.compare__col--mm .icon { color: #4ADE80; width: 19px; height: 19px; margin-top: .22rem; }
.compare__tag {
  position: absolute; top: 1.2rem; right: 1.2rem; z-index: 1;
  background: var(--green); color: #fff;
  font-family: var(--font-display); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: var(--r-pill); padding: .3rem .8rem;
}
.compare-close { max-width: 720px; margin: 2.2rem auto 0; text-align: center; color: var(--muted); }

/* ---------- Blog / Conteúdos ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
@media (min-width: 1025px) {
  /* card órfão na última linha vai para a coluna central */
  .post-grid > .post-card:last-child:nth-child(3n + 1) { grid-column: 2; }
}
.post-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-xs);
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: #CBD8EC; }
.post-card__cover {
  position: relative; overflow: hidden;
  aspect-ratio: 16/8.5;
  display: grid; place-items: center;
  color: rgba(255,255,255,.92);
}
.post-card__cover .icon {
  width: 54px; height: 54px; stroke-width: 1.6;
  filter: drop-shadow(0 6px 14px rgba(8, 20, 38, .3));
  transition: transform .3s ease;
}
.post-card:hover .post-card__cover .icon { transform: scale(1.12); }
.post-card__cover::before {
  content: ""; position: absolute; top: -46px; right: -46px; width: 150px; height: 150px;
  border-radius: 50%; background: rgba(255,255,255,.12);
}
.post-card__cover::after {
  content: ""; position: absolute; bottom: -60px; left: -30px; width: 170px; height: 170px;
  border-radius: 50%; background: rgba(8, 20, 38, .14);
}
.cover--1 { background: linear-gradient(135deg, #1E56C8 0%, #4F83E8 100%); }
.cover--2 { background: linear-gradient(135deg, #12294E 0%, #1E56C8 100%); }
.cover--3 { background: linear-gradient(135deg, #0C1D3A 0%, #2E62CE 100%); }
.cover--4 { background: linear-gradient(135deg, #1C3A6B 0%, #4F83E8 100%); }
.cover--5 { background: linear-gradient(135deg, #123B84 0%, #3B74E0 100%); }
.cover--6 { background: linear-gradient(135deg, #0F2C5C 0%, #5A8CEB 100%); }
.post-card__tag {
  position: absolute; top: .9rem; left: .9rem; z-index: 1;
  background: rgba(255,255,255,.92); color: var(--navy);
  font-family: var(--font-display); font-size: .72rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  border-radius: var(--r-pill); padding: .28rem .75rem;
}
.post-card__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card__body h3 { font-size: 1.08rem; margin-bottom: .4em; }
.post-card__body p { color: var(--muted); font-size: .92rem; flex: 1; }
.post-card__link {
  margin-top: 1.05rem;
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--blue);
}
.post-card__link .icon { width: 17px; height: 17px; transition: transform .2s ease; }
.post-card:hover .post-card__link .icon { transform: translateX(4px); }
.post-more { text-align: center; margin-top: 2.4rem; }

/* ---------- CTA bands ---------- */
.cta-band { position: relative; z-index: 1; text-align: center; }
.cta-band .btn { margin-top: 1.6rem; }
.cta-band__support { margin-top: 1rem; font-size: .88rem; color: #9FB2CE; }
.cta-curve {
  position: absolute; inset: auto 0 0 0; width: 100%; height: auto;
  pointer-events: none; opacity: .5; z-index: 0;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); margin-bottom: .85rem;
  box-shadow: var(--sh-xs);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item.is-open { border-color: #C4D4EE; box-shadow: var(--sh-sm); }
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--navy);
  padding: 1.2rem 1.4rem;
  transition: color .18s ease;
}
.faq__q:hover { color: var(--blue); }
.faq__q .faq__ic {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center;
  transition: transform .28s ease, background .28s ease, color .28s ease;
}
.faq__q .icon { width: 16px; height: 16px; }
.faq__item.is-open .faq__ic { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq__a-inner { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: .96rem; }

/* ---------- Formulário ---------- */
.form-wrap {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-md);
  padding: clamp(1.7rem, 4vw, 2.7rem);
  max-width: 860px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.form-wrap::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--grad-blue);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--navy); }
.field .req { color: var(--green); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--line);
  border-radius: var(--r-sm); padding: .82rem 1rem;
  transition: border-color .18s ease, box-shadow .18s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3.5px rgba(30, 86, 200, .13);
}
.field input.is-invalid { border-color: #C0392B; box-shadow: 0 0 0 3.5px rgba(192, 57, 43, .1); }
.field textarea { resize: vertical; min-height: 110px; }
.form-actions { margin-top: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.form-hint { font-size: .84rem; color: var(--muted-2); text-align: center; }

/* ---------- Rodapé ---------- */
.footer { background: var(--navy-950); color: #B9C7DD; padding: 4.2rem 0 2rem; position: relative; overflow: hidden; }
.footer::before {
  content: ""; position: absolute; top: -160px; right: -120px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(30,86,200,.18), transparent 70%);
}
.footer__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 2.8rem;
}
.footer__brand img { height: 60px; width: auto; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 1.1rem; }
.footer__brand p { font-size: .93rem; color: #93A5C2; max-width: 34ch; }
.footer h4 { color: #fff; font-size: .92rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer a { color: #B9C7DD; font-size: .94rem; transition: color .18s ease, transform .18s ease; display: inline-flex; align-items: center; gap: .5rem; }
.footer a:hover { color: #fff; }
.footer .icon { width: 17px; height: 17px; }
.footer__meta { display: flex; align-items: flex-start; gap: .5rem; font-size: .94rem; }
.footer__meta .icon { margin-top: .25rem; color: #6E82A5; }
.footer__social { display: flex; gap: .7rem; margin-top: 1.3rem; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.footer__social a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); }
.footer__social .icon { width: 19px; height: 19px; }
.footer__bottom {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem;
  font-size: .82rem; color: #7B8DAB;
}
.footer__credit { width: 100%; text-align: center; margin-top: .4rem; font-size: .78rem; color: #64789B; }
.footer__credit a { color: #8FA3C4; font-size: inherit; font-weight: 600; }
.footer__credit a:hover { color: #fff; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 1.15rem; bottom: 1.15rem; z-index: 70;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--green); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  padding: .85rem 1.3rem; border-radius: var(--r-pill);
  box-shadow: 0 10px 30px rgba(22, 163, 74, .45);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: pulse-ring 2.6s ease-out infinite;
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 36px rgba(22, 163, 74, .55); animation-play-state: paused; }
.wa-float:active { transform: scale(.97); }
.wa-float .icon { width: 21px; height: 21px; }

/* ---------- Páginas internas (artigos SEO + blog) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 92% -20%, var(--blue-soft) 0%, transparent 60%),
    linear-gradient(180deg, #FDFEFF 0%, var(--bg) 100%);
  padding: clamp(2.6rem, 6vw, 4.2rem) 0 clamp(2.2rem, 5vw, 3.4rem);
  border-bottom: 1px solid var(--line);
}
.page-hero .dots--pg { width: 170px; height: 120px; top: 40px; right: max(1rem, calc(50vw - 640px)); opacity: .35; }
.crumb { font-size: .85rem; color: var(--muted-2); margin-bottom: 1.2rem; position: relative; z-index: 1; }
.crumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.crumb li + li::before { content: "›"; margin-right: .4rem; color: var(--muted-2); }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--blue); }
.page-hero h1 { max-width: 24ch; position: relative; z-index: 1; }
.page-hero .lead { font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--muted); max-width: 62ch; position: relative; z-index: 1; }

.article { padding: clamp(2.6rem, 6vw, 4rem) 0; }
.article__grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(2rem, 5vw, 3.6rem); align-items: start; }
.article__body h2 { font-size: clamp(1.35rem, 2.6vw, 1.75rem); margin-top: 2.2em; }
.article__body h2:first-child { margin-top: 0; }
.article__body h3 { margin-top: 1.7em; }
.article__body img { border-radius: var(--r-md); box-shadow: var(--sh-md); margin: 1.6rem 0; }
.article__body ul li, .article__body ol li { margin-bottom: .45rem; }
.article__body .box {
  background: var(--blue-soft); border-left: 4px solid var(--blue);
  border-radius: var(--r-sm); padding: 1.1rem 1.3rem; margin: 1.7rem 0;
  font-size: .96rem;
}
.article__cta {
  background: var(--grad-navy);
  border-radius: var(--r-lg); box-shadow: var(--sh-md);
  padding: 2rem 1.9rem; margin: 2.4rem 0;
  color: #fff;
  position: relative; overflow: hidden;
}
.article__cta::after {
  content: ""; position: absolute; top: -50%; right: -20%;
  width: 60%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,86,200,.4), transparent 70%);
}
.article__cta h3 { color: #fff; position: relative; z-index: 1; }
.article__cta p { color: #C9D6EA; font-size: .95rem; position: relative; z-index: 1; }
.article__cta .btn { margin-top: .9rem; position: relative; z-index: 1; }
.article__note {
  font-size: .87rem; color: var(--muted);
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--muted-2);
  border-radius: var(--r-sm); padding: 1rem 1.2rem; margin-top: 2.4rem;
}

.aside { position: sticky; top: 96px; display: grid; gap: 1.2rem; }
.aside__box {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--sh-xs); padding: 1.4rem 1.4rem;
}
.aside__box h3 { font-size: 1rem; margin-bottom: .9rem; }
.aside__box ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.aside__box a { font-size: .92rem; font-weight: 500; color: var(--text); display: flex; gap: .5rem; align-items: flex-start; transition: color .18s ease; }
.aside__box a:hover { color: var(--blue); }
.aside__box .icon { width: 16px; height: 16px; margin-top: .25rem; color: var(--blue); }
.aside__wa {
  background: var(--grad-navy);
  color: #fff; text-align: center;
  border-radius: var(--r-md); box-shadow: var(--sh-md); padding: 1.7rem 1.4rem;
  position: relative; overflow: hidden;
}
.aside__wa::after {
  content: ""; position: absolute; top: -40%; right: -30%;
  width: 80%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,86,200,.4), transparent 70%);
}
.aside__wa h3 { color: #fff; font-size: 1.05rem; position: relative; z-index: 1; }
.aside__wa p { color: #C9D6EA; font-size: .88rem; position: relative; z-index: 1; }
.aside__wa .btn { width: 100%; margin-top: .8rem; padding: .85rem 1rem; font-size: .93rem; position: relative; z-index: 1; }

/* ============================================================
   ANIMAÇÕES DE ENTRADA (progressivas: só escondem com JS ativo)
   ============================================================ */
.js [data-anim] { opacity: 0; transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
.js [data-anim="fade-up"]    { transform: translateY(26px); }
.js [data-anim="fade-left"]  { transform: translateX(-30px); }
.js [data-anim="fade-right"] { transform: translateX(30px); }
.js [data-anim="scale-in"]   { transform: scale(.94); }
.js [data-anim].is-in { opacity: 1; transform: none; }

/* Entrada do hero (uma vez, ao carregar) */
.js .hero__copy > * { opacity: 0; transform: translateY(22px); }
.js.is-loaded .hero__copy > * {
  animation: hero-in .75s cubic-bezier(.22,.61,.36,1) forwards;
}
.js.is-loaded .hero__copy > *:nth-child(1) { animation-delay: .05s; }
.js.is-loaded .hero__copy > *:nth-child(2) { animation-delay: .16s; }
.js.is-loaded .hero__copy > *:nth-child(3) { animation-delay: .28s; }
.js.is-loaded .hero__copy > *:nth-child(4) { animation-delay: .4s; }
.js.is-loaded .hero__copy > *:nth-child(5) { animation-delay: .52s; }
.js .hero__media { opacity: 0; transform: translateX(36px); }
.js.is-loaded .hero__media {
  animation: hero-in-media .85s .25s cubic-bezier(.22,.61,.36,1) forwards;
}
@keyframes hero-in {
  to { opacity: 1; transform: none; }
}
@keyframes hero-in-media {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Acessibilidade: reduz movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-anim], .js .hero__copy > *, .js .hero__media { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
  .hero__card, .hero__chip, .split__badge, .doc-band__chip, .wa-float { animation: none !important; }
  .btn--wa::after { animation: none !important; }
  .hero__curve path { stroke-dashoffset: 0 !important; animation: none !important; }
  .btn, .card, .pain, .step, .trustbar li, .post-card { transition: none; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 560px; margin: 0 auto; }
  .hero__chip--2 { right: .4rem; }
  .trustbar ul { grid-template-columns: repeat(3, 1fr); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .article__grid { grid-template-columns: 1fr; }
  .aside { position: static; grid-template-columns: 1fr 1fr; }
  .aside__wa { grid-column: 1 / -1; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    /* O backdrop-filter do .header cria um containing block: position:fixed
       resolveria contra o header e o drawer colapsaria. Por isso o drawer é
       absolute, ancorado logo abaixo do header (sticky). */
    position: absolute; top: 100%; left: 0; right: 0; z-index: 55;
    height: calc(100vh - 78px);
    height: calc(100dvh - 78px);
    background: var(--surface);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 1.2rem 1.4rem 2rem;
    transform: translateX(105%);
    visibility: hidden; /* evita largura fantasma (overflow horizontal) quando fechado */
    transition: transform .3s ease, visibility 0s .3s;
    overflow-y: auto;
    box-shadow: var(--sh-lg);
  }
  .nav.is-open { transform: none; visibility: visible; transition: transform .3s ease, visibility 0s; }
  .nav__link { width: 100%; padding: .95rem 0; font-size: 1.08rem; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 1.2rem; width: 100%; }
  .burger { display: inline-flex; }
  .split { grid-template-columns: 1fr; }
  .split__badge { right: .6rem; }
  .doc-band { grid-template-columns: 1fr; }
  .doc-band__media { order: -1; }
  .compare { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .fit-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 3.2rem 0 3.6rem; }
  .hero { padding-top: 2.4rem; }
  .hero__ring { width: 90px; height: 90px; top: -20px; left: -14px; border-width: 7px; }
  .hero__dots { right: -8px; }
  .hero__photo { border-radius: 26px 26px 26px 80px; }
  .hero__img { aspect-ratio: 4 / 4.1; }
  .hero__card { position: static; margin-top: 1rem; max-width: none; animation: none; }
  .hero__chip--1 { top: .9rem; right: .6rem; }
  .hero__chip--2 { display: none; }
  .hero__ctas .btn { width: 100%; }
  .trustbar ul { grid-template-columns: 1fr 1fr; }
  .trustbar li:last-child { grid-column: 1 / -1; }
  .pain-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .split__badge { position: static; margin-top: 1rem; display: inline-flex; animation: none; }
  .doc-band__chip { position: static; margin-top: .9rem; animation: none; }
  .cta-band .btn { width: 100%; }
  .aside { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .wa-float span { display: none; }               /* vira botão redondo */
  .wa-float { padding: 1rem; border-radius: 50%; }
  .wa-float .icon { width: 26px; height: 26px; }
  .brand img { height: 44px; }
}
