/* ==========================================================================
   Amanda Teruel — Nutricionista | Curitiba
   Fontes self-hosted (sem render-blocking externo)
   ========================================================================== */

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(../fonts/cormorant-garamond-400-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(../fonts/cormorant-garamond-400-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url(../fonts/jost-300-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url(../fonts/jost-300-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------- tokens -- */

:root {
  --olive: #776f4f;
  --olive-dark: #5f5940;
  --forest: #455040;
  --cream: #f5f0e6;
  --cream-soft: #faf7f0;
  --sand: #e2dcc9;
  /* Texto secundário sobre fundo oliva: --sand só atinge 3,5:1, abaixo de
     WCAG AA. Este tom mantém a temperatura da marca e chega a ~4,8:1. */
  --on-olive: #fdfbf6;
  --ink: #2e2e2a;
  --ink-soft: #4e4d47;
  --white: #fff;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;

  --wrap: 1140px;
  --gap: clamp(1rem, 3vw, 2rem);
  --section-y: clamp(3.5rem, 9vw, 7rem);
  --radius: 4px;

  --shadow-sm: 0 1px 3px rgb(46 46 42 / 8%);
  --shadow-md: 0 8px 30px rgb(46 46 42 / 10%);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------------------- reset -- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  /* Os reveals laterais deslocam elementos em ±26px antes de entrar em cena;
     `clip` contém esse transbordo sem criar contexto de rolagem — o que
     `overflow-x: hidden` faria, quebrando o `position: sticky` do cabeçalho. */
  overflow-x: clip;
  background: var(--cream-soft);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.02rem + 0.22vw, 1.175rem);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 1.7rem + 3.4vw, 4.2rem);
}
h2 {
  font-size: clamp(1.9rem, 1.4rem + 2.4vw, 3rem);
}
h3 {
  font-size: clamp(1.3rem, 1.15rem + 0.7vw, 1.6rem);
}

p {
  margin: 0 0 1.1em;
  text-wrap: pretty;
}

ul {
  padding-left: 1.15em;
}

:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* ------------------------------------------------------------- utilities -- */

.wrap {
  width: min(100% - 2 * var(--gap), var(--wrap));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
}

.eyebrow {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 1rem;
}

.lead {
  font-size: clamp(1.15rem, 1.08rem + 0.38vw, 1.35rem);
  color: var(--ink-soft);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------- botões -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
}

/* CTA principal: branco puro sobre o verde escuro (8,5:1) e peso 600 — em
   caixa alta com entreletra, pesos leves "somem" mesmo com contraste alto. */
.btn--solid {
  background: var(--forest);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgb(69 80 64 / 32%);
}
.btn--solid:hover {
  background: #37402f;
  box-shadow: 0 8px 22px rgb(69 80 64 / 42%);
}

.btn--ghost {
  border-color: currentcolor;
  color: var(--cream);
}
.btn--ghost:hover {
  background: var(--cream);
  color: var(--olive-dark);
}

.btn--outline {
  border-color: var(--olive);
  color: var(--olive-dark);
}
.btn--outline:hover {
  background: var(--olive);
  color: var(--cream);
}

/* -------------------------------------------------------------- cabeçalho -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(250 247 240 / 88%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgb(119 111 79 / 12%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  padding-block: 0.9rem;
}

.site-header__logo img {
  height: 34px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

/* `:not(.btn)` é essencial: sem ele, `.nav a` (0,2,1) vence `.btn--solid`
   (0,1,0) e pinta o texto do CTA com a cor cinza do menu — sobre o verde
   escuro isso dá 1,1:1 e o rótulo do botão desaparece. */
.nav a:not(.btn) {
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.nav a:not(.btn):hover,
.nav a:not(.btn)[aria-current="page"] {
  color: var(--olive-dark);
}

.nav .btn {
  padding: 0.75rem 1.6rem;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--forest);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    position: absolute;
    inset: 100% 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream-soft);
    border-bottom: 1px solid rgb(119 111 79 / 12%);
    padding: 0.5rem var(--gap) 1.5rem;
    display: none;
  }
  .nav[data-open="true"] {
    display: flex;
  }
  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgb(119 111 79 / 10%);
  }
  .nav .btn {
    margin-top: 1rem;
    border-bottom: 0;
  }
}

/* ------------------------------------------------------------------ hero -- */

.hero {
  background: var(--olive);
  color: var(--cream);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.hero__figure {
  margin: 0;
  justify-self: center;
}
.hero__figure img {
  width: min(100%, 380px);
  margin-inline: auto;
}

.hero h1 {
  margin-bottom: 0.35em;
}

.hero__sub {
  font-size: clamp(1.18rem, 1.1rem + 0.5vw, 1.4rem);
  color: var(--on-olive);
  max-width: 34ch;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__cred {
  margin: 2rem 0 0;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(253 251 246 / 88%);
}

@media (max-width: 780px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__figure {
    order: -1;
  }
  .hero__figure img {
    width: min(72%, 300px);
  }
  .hero__sub {
    margin-inline: auto;
  }
  .hero__actions {
    justify-content: center;
  }
}

/* ---------------------------------------------------------------- blocos -- */

.prose-block {
  max-width: 68ch;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.split--reverse .split__media {
  order: -1;
}

.split__media img {
  width: min(100%, 420px);
  margin-inline: auto;
}

@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split--reverse .split__media {
    order: 0;
  }
  .split__media img {
    width: min(70%, 320px);
  }
}

.section--cream {
  background: var(--cream);
}

.section--olive,
.section--testimonials {
  background: var(--olive);
  color: var(--cream);
}
.section--olive .eyebrow,
.section--testimonials .eyebrow {
  color: var(--on-olive);
}
.section--olive .lead,
.section--testimonials .lead {
  color: var(--on-olive);
}

/* --------------------------------------------------------------- destaques -- */

.pills {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.7rem;
}
.pills li {
  position: relative;
  padding-left: 1.9rem;
}
.pills li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--olive);
}

/* ---------------------------------------------------------------- planos -- */

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  /* Empilhados, o selo do card em destaque fica sobre o vão entre os cards e
     precisa de mais folga vertical do que a coluna dupla exige. */
  row-gap: 2.6rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgb(119 111 79 / 16%);
  border-radius: 12px;
  padding: clamp(1.9rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

/* Uma faixa oliva no topo, revelada no hover — dá o retorno visual sem
   deslocar nada no layout. */
.plan::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 12px 12px 0 0;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

/* O hover precisa de especificidade maior que `.js [data-reveal].is-visible`
   (0,3,0), que fixa `transform: none` — senão o card revelado nunca sobe. */
.plan:hover,
.js .plan[data-reveal].is-visible:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgb(119 111 79 / 40%);
}
.plan:hover::before {
  transform: scaleX(1);
}

/* O card em destaque inverte para o verde escuro da marca: sobre o creme da
   seção, um card branco a mais não se diferencia dos vizinhos. */
.plan--featured {
  background: var(--forest);
  border-color: var(--forest);
  border-width: 1.5px;
  color: var(--on-olive);
  box-shadow: 0 20px 48px rgb(69 80 64 / 28%);
}
.plan--featured::before {
  background: var(--sand);
  transform: scaleX(1);
}
/* `.plan.plan--featured` de propósito: `.plan--featured ul` empata em
   especificidade com `.plan ul`, que está declarado mais abaixo e venceria o
   empate — o texto do card escuro ficaria escuro também. A classe repetida
   tira o resultado da mão da ordem do arquivo. */
.plan.plan--featured h3,
.plan.plan--featured .plan__days {
  color: var(--cream);
}
.plan.plan--featured .plan__unit {
  color: var(--sand);
}
.plan.plan--featured ul {
  border-top-color: rgb(226 220 201 / 28%);
  color: var(--on-olive);
}
.plan.plan--featured ul li::before {
  background: var(--sand);
  color: var(--forest);
}

/* O `.btn--solid` é verde escuro: dentro do card invertido ele sumiria. */
.plan--featured .btn--solid {
  background: var(--cream);
  color: var(--forest);
  box-shadow: 0 4px 14px rgb(20 25 18 / 28%);
}
.plan--featured .btn--solid:hover {
  background: var(--white);
  box-shadow: 0 8px 22px rgb(20 25 18 / 36%);
}

.plan--featured .plan__tag {
  background: var(--sand);
  color: var(--forest);
  box-shadow: 0 4px 14px rgb(69 80 64 / 35%);
}
.plan--featured:hover,
.js .plan--featured[data-reveal].is-visible:hover {
  border-color: var(--forest);
  box-shadow: 0 30px 66px rgb(69 80 64 / 38%);
}

/* Em três colunas o card do meio ganha altura para se destacar. Abaixo disso
   os cards empilham e o avanço só criaria um degrau estranho. */
@media (min-width: 900px) {
  .plan--featured {
    margin-block: -1rem;
  }
}

/* Sobreposto à borda superior: dentro do fluxo, o selo empurraria o título do
   card do meio para baixo e desalinharia os três `h3`. */
.plan__tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--olive);
  color: var(--cream);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgb(119 111 79 / 30%);
}

.plan h3 {
  margin-bottom: 0.15em;
}

/* O rótulo quebra em duas linhas fixas (`<br>` no HTML). Deixá-lo quebrar
   sozinho colocaria "180 dias de acompanhamento" em duas linhas e os outros
   dois em uma, empurrando a divisória de um card para baixo dos demais. */
.plan__duration {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.5rem;
}

.plan__unit {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--olive);
}

.plan__days {
  font-family: var(--font-display);
  font-size: 2.9rem;
  font-weight: 500;
  line-height: 1;
  color: var(--forest);
}

.plan ul {
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 0 0 1.8rem;
  border-top: 1px solid rgb(119 111 79 / 14%);
  display: grid;
  gap: 0.85rem;
  font-size: 1.04rem;
  color: var(--ink-soft);
}
.plan ul li {
  position: relative;
  padding-left: 2.1rem;
}
.plan ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  display: grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgb(119 111 79 / 13%);
  color: var(--olive-dark);
  font-size: 0.76rem;
  font-weight: 600;
}
.plan--featured ul li::before {
  background: var(--olive);
  color: var(--cream);
}

.plan .btn {
  margin-top: auto;
}

/* ------------------------------------------------------------------- faq -- */

.faq {
  max-width: 780px;
  margin-top: 2.5rem;
}

.faq details {
  border-bottom: 1px solid rgb(119 111 79 / 18%);
}

.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  /* Cormorant tem traço fino: no peso 400 a pergunta ficava lavada em tela
     mesmo com contraste alto. A família é variável (300–700), então o 600 não
     custa download nem vira falso-negrito sintetizado. */
  font-size: clamp(1.22rem, 1.05rem + 0.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--olive);
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details > div {
  padding-bottom: 1.4rem;
  color: var(--ink-soft);
  max-width: 65ch;
}
.faq details > div p:last-child {
  margin-bottom: 0;
}

/* ---------------------------------------------------------------- contato -- */

/* Quatro caixas iguais tratavam o CEP com o mesmo peso do canal de
   agendamento, e a altura de todas ficava presa à do endereço. Aqui o
   WhatsApp domina e o resto vira uma lista de referência. */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  align-items: start;
}

@media (min-width: 860px) {
  .contact {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    /* A coluna da esquerda tem um item e a da direita três: centrar evita o
       vazio embaixo do WhatsApp. */
    align-items: center;
  }
}

.contact__primary {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}
.contact__primary svg {
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  fill: currentcolor;
  opacity: 0.9;
  transition: transform 0.35s var(--ease);
}
.contact__primary:hover {
  color: var(--white);
}
.contact__primary:hover svg {
  transform: scale(1.06);
}

.contact__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-olive);
  margin-bottom: 0.15rem;
}

/* `--cream` sobre o oliva dá 4,4:1; `--on-olive` sobe para 4,9:1 e mantém a
   temperatura da marca. Ver a nota do token no topo do arquivo. */
.contact__number {
  display: block;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--on-olive);
}

.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.contact__list li + li {
  border-top: 1px solid rgb(253 251 246 / 20%);
}

.contact__list a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 0;
  color: var(--on-olive);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.contact__list a:hover {
  color: var(--white);
}
.contact__list svg {
  flex: none;
  width: 1.3rem;
  height: 1.3rem;
  opacity: 0.85;
}

.contact__list address {
  font-style: normal;
  line-height: 1.45;
}
.contact__list address span {
  display: block;
  font-size: 0.94rem;
  opacity: 0.82;
}

/* ----------------------------------------------------------------- blog -- */

.post-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
  margin-top: 3rem;
  padding: 0;
  list-style: none;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgb(119 111 79 / 16%);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-card__meta {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.8rem;
}

.post-card h2,
.post-card h3 {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  margin-bottom: 0.5em;
}

.post-card a {
  text-decoration: none;
}
.post-card a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.post-card {
  position: relative;
}

.post-card p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.empty-state {
  margin-top: 2.5rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--white);
  border: 1px dashed rgb(119 111 79 / 35%);
  border-radius: var(--radius);
  text-align: center;
  max-width: 640px;
}
.empty-state p:last-child {
  margin-bottom: 0;
}

/* artigo individual */

.article {
  max-width: 72ch;
  margin-inline: auto;
}
.article__meta {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1.2rem;
}
.article h2 {
  margin-top: 2em;
}
.article h3 {
  margin-top: 1.6em;
}
.article ul,
.article ol {
  margin-bottom: 1.4em;
  color: var(--ink-soft);
}
.article li {
  margin-bottom: 0.5em;
}
.article blockquote {
  margin: 2em 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--olive);
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--olive-dark);
}

.breadcrumb {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--olive);
}
.breadcrumb a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.breadcrumb a:hover {
  border-color: currentcolor;
}

/* --------------------------------------------------------------- rodapé -- */

.site-footer {
  background: var(--forest);
  color: var(--sand);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 1.02rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}

.site-footer img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.site-footer h2 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.site-footer a {
  color: var(--sand);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.site-footer a:hover {
  color: var(--cream);
}

.site-footer address {
  font-style: normal;
}

.site-footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgb(245 240 230 / 18%);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgb(226 220 201 / 88%);
}

/* ============================================================== animações == */

/* Barra de progresso de leitura */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--olive), var(--forest));
  z-index: 70;
  pointer-events: none;
}

/* Revelação no scroll — o estado inicial só é aplicado quando o JS assume,
   para que o conteúdo continue visível sem JS e para leitores de tela. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

/* Variantes do estado inicial. Precisam vir ANTES da regra `.is-visible`:
   `[data-reveal="left"]` e `[data-reveal].is-visible` têm a mesma
   especificidade (0,3,0), então quem estiver por último vence. Se as
   variantes viessem depois, o elemento revelado continuaria deslocado. */
.js [data-reveal="left"] {
  transform: translateX(-26px);
}
.js [data-reveal="right"] {
  transform: translateX(26px);
}
.js [data-reveal="zoom"] {
  transform: scale(0.94);
}

/* Abaixo do ponto em que o layout vira coluna única, o deslocamento lateral
   só serviria para empurrar conteúdo para fora da viewport e criar rolagem
   horizontal — ali a revelação passa a ser apenas vertical. */
@media (max-width: 820px) {
  .js [data-reveal="left"],
  .js [data-reveal="right"] {
    transform: translateY(22px);
  }
}

/* Estado final — declarado por último e com especificidade própria para
   vencer todas as variantes acima, inclusive dentro da media query. */
.js [data-reveal].is-visible,
.js [data-reveal="left"].is-visible,
.js [data-reveal="right"].is-visible,
.js [data-reveal="zoom"].is-visible {
  opacity: 1;
  transform: none;
}

/* Planos: os itens da lista entram um a um depois do card, e o selo do card
   em destaque fecha a sequência. O atraso soma o `--reveal-delay` do próprio
   card, para que as três colunas continuem escalonadas entre si. */
.js .plan[data-reveal] li,
.js .plan[data-reveal] .plan__tag {
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.js .plan[data-reveal] li {
  transform: translateY(10px);
}
.js .plan[data-reveal] .plan__tag {
  transform: translate(-50%, -50%) scale(0.86);
}

.js .plan[data-reveal].is-visible li {
  opacity: 1;
  transform: none;
}
.js .plan[data-reveal].is-visible .plan__tag {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.js .plan[data-reveal] li:nth-child(1) {
  transition-delay: calc(var(--reveal-delay, 0ms) + 260ms);
}
.js .plan[data-reveal] li:nth-child(2) {
  transition-delay: calc(var(--reveal-delay, 0ms) + 340ms);
}
.js .plan[data-reveal] li:nth-child(3) {
  transition-delay: calc(var(--reveal-delay, 0ms) + 420ms);
}
.js .plan[data-reveal] li:nth-child(4) {
  transition-delay: calc(var(--reveal-delay, 0ms) + 500ms);
}
.js .plan[data-reveal] .plan__tag {
  transition-delay: calc(var(--reveal-delay, 0ms) + 200ms);
}

/* Mesma armadilha de especificidade do `.plan:hover`: sem o seletor reforçado,
   `.js [data-reveal].is-visible` (0,3,0) trava o `transform` do depoimento. */
.js .shot[data-reveal].is-visible:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgb(46 46 42 / 28%);
}

/* Hero: entrada escalonada assim que a página carrega */
.hero__stagger > * {
  animation: rise 0.85s var(--ease) both;
}
.hero__stagger > *:nth-child(1) {
  animation-delay: 0.05s;
}
.hero__stagger > *:nth-child(2) {
  animation-delay: 0.15s;
}
.hero__stagger > *:nth-child(3) {
  animation-delay: 0.25s;
}
.hero__stagger > *:nth-child(4) {
  animation-delay: 0.35s;
}
.hero__stagger > *:nth-child(5) {
  animation-delay: 0.45s;
}

.hero__figure {
  animation: rise 1s var(--ease) 0.2s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Sublinhado que se desenha ao revelar */
.underline-draw {
  position: relative;
  white-space: nowrap;
}
.underline-draw::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08em;
  height: 2px;
  background: currentcolor;
  opacity: 0.35;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.9s var(--ease) 0.35s;
}
.is-visible .underline-draw::after,
.underline-draw.is-visible::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .js .plan[data-reveal] li {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }
  .js .plan[data-reveal] .plan__tag {
    opacity: 1 !important;
    transform: translate(-50%, -50%) !important;
    transition: none;
  }
  .plan::before {
    transition: none;
  }
  .hero__stagger > *,
  .hero__figure {
    animation: none;
  }
  .underline-draw::after {
    transform: scaleX(1);
  }
  .scroll-progress {
    display: none;
  }
}

/* ============================================================ depoimentos == */

.section--testimonials {
  overflow: hidden;
}

/* Os prints são a peça mais pesada da página; na largura cheia do `wrap` eles
   dominavam a seção. A coluna inteira estreita — não só o grid — para que o
   título continue alinhado à borda esquerda dos cards. */
.section--testimonials .wrap {
  --wrap: 900px;
}

.testimonials {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-top: 3rem;
  align-items: start;
}

/* Os depoimentos são os prints originais das conversas */
.shot {
  margin: 0;
  background: var(--cream-soft);
  border-radius: 14px;
  padding: 0.75rem 0.75rem 0.5rem;
  box-shadow: 0 14px 40px rgb(46 46 42 / 22%);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgb(46 46 42 / 28%);
}

.shot img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.shot figcaption {
  padding: 0.7rem 0.35rem 0.35rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-dark);
}

.testimonials__note {
  margin-top: 2.5rem;
  font-size: 0.98rem;
  color: rgb(253 251 246 / 88%);
  max-width: 60ch;
}

/* ------------------------------------------------------ números / provas -- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1.2rem, 3vw, 2.5rem);
  margin-top: 3rem;
  text-align: center;
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.8rem + 2.6vw, 3.6rem);
  line-height: 1;
  color: var(--olive);
  font-variant-numeric: tabular-nums;
}
.section--olive .stat__value,
.section--testimonials .stat__value {
  color: var(--cream);
}

.stat__label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.section--olive .stat__label,
.section--testimonials .stat__label {
  color: var(--on-olive);
}

/* --------------------------------------------------------- whatsapp float -- */

.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 60;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 20px rgb(37 211 102 / 35%);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  fill: currentcolor;
}
