/* ============================================================
   Comunidade Viver Leve: comunidade.css (standalone)
   Identidade própria: creme + terracota + marrom quente.
   Títulos em serifa (Fraunces) = calor de casa, não de venda.
   Não depende dos estilos das outras páginas.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* ---------- Rampa tipográfica (7 papéis) ----------
     Cada passo existe para um trabalho diferente. Valores fora
     desta rampa precisam de justificativa, não de conveniência. */
  --fs-display: clamp(2.6rem, 9.5vw, 6rem);   /* título de abertura */
  --fs-headline: clamp(2rem, 6vw, 3.2rem);    /* título de seção */
  --fs-title: 1.35rem;                        /* nome de cartão, pergunta */
  --fs-lead: 1.15rem;                         /* parágrafo de entrada */
  --fs-body: 1.05rem;                         /* texto corrido (piso 40+) */
  --fs-small: 0.94rem;                        /* nota, legenda */
  --fs-label: 0.78rem;
  --fs-subhead: clamp(1.2rem, 3.2vw, 1.7rem);  /* frase de apoio do título */
  --fs-figure: clamp(3rem, 11vw, 5.5rem);      /* numeral em destaque (preço) */
                        /* micro em caixa alta */

  /* Entrelinha por papel: ajustada à face e ao tamanho, não a uma razão única */
  --lh-display: 1.02;
  --lh-headline: 1.05;
  --lh-title: 1.2;
  --lh-body: 1.55;
  --lh-tight: 1.35;

  /* Medida de leitura: uma para texto corrido, uma para entrada */
  --measure: 62ch;
  --measure-lead: 52ch;

  --bg: #fbf5ee;           /* creme quente */
  --panel: #ffffff;        /* cartões */
  --peach: #f9e6d8;        /* painéis suaves */
  --ink: #38291f;          /* marrom profundo (texto) */
  --soft: #6f5849;         /* texto secundário (>=5.5:1 sobre creme) */
  --terra: #e2654a;        /* terracota: FUNDOS e areas grandes */
  --terra-btn: #c9502f;    /* terracota de botao/tag: branco por cima >=5:1 */
  --terra-text: #a03d1c;   /* terracota de TEXTO sobre creme/pessego (>=4.5:1) */
  --terra-dark: #c9502f;   /* hover */
  --line: #ecdccd;         /* fios */
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/* Compensa o header fixo: ao navegar por âncora, o título da seção
   não fica escondido atrás do menu. */
section[id],
h1[id],
h2[id] {
  scroll-margin-top: 90px;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Utilidades ---------- */
.tag {
  display: inline-block;
  background: var(--terra-btn);
  color: #fff;
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5em 1.1em;
  border-radius: 999px;
}

.tag--soft {
  background: var(--peach);
  color: var(--terra-text);
}

.section-title {
  font-family: var(--serif);
  font-size: var(--fs-headline);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0.5em 0;
  color: var(--ink);
}

.section-title em {
  font-style: italic;
  color: var(--terra);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
}

.no-gsap .reveal {
  opacity: 1;
  transform: none;
}

/* Checklist com ✓ terracota */
.checklist {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.checklist li {
  position: relative;
  padding-left: 2.1rem;
  font-size: var(--fs-body);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--terra);
  color: #fff;
  border-radius: 50%;
  font-size: var(--fs-label);
  font-weight: 800;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-weight: 800;
  font-size: var(--fs-body);
  line-height: var(--lh-title);
  text-align: center;
  padding: 0.9em 1.7em;
  border: none;
  border-radius: 999px;
  min-height: 44px; /* alvo de toque confortável: 40+ no celular */
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.btn--terra {
  background: var(--terra-btn);
  color: #fff;
}

.btn--terra:hover {
  background: #a83f22;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(226, 101, 74, 0.35);
}

.btn--cream {
  background: var(--bg);
  color: var(--terra-text);
}

.btn--cream:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.btn--xl {
  font-size: var(--fs-body);
  padding: 1.1em 2.1em;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(251, 245, 238, 0.88);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s var(--ease);
}

.nav.is-scrolled {
  box-shadow: 0 1px 0 var(--line);
}

.nav__logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: var(--fs-lead);
  color: var(--ink);
  line-height: 1.1;
}

.nav__logo span {
  color: var(--terra-text);
}

.nav__cta {
  font-size: var(--fs-small);
  flex-shrink: 0;
}

@media (min-width: 860px) {
  .nav {
    padding: 1rem 2.5rem;
  }
  .nav__logo {
    font-size: var(--fs-title);
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(6rem, 14vh, 8.5rem) 1.25rem clamp(3.5rem, 8vh, 5rem);
}

.hero__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 620px;
}

.hero__title {
  font-family: var(--serif);
  font-size: var(--fs-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 1.1rem 0;
}

.hero__title em {
  font-style: italic;
  color: var(--terra);
}

.hero__sub {
  color: var(--soft);
  font-size: var(--fs-subhead);
  max-width: var(--measure-lead);
  margin-bottom: 1.6rem;
}

/* Preço em destaque no hero (baixo ticket = transparência total) */
.hero__preco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.6rem;
}

.hero__preco-valor {
  font-family: var(--serif);
  font-size: var(--fs-headline);
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
}

.hero__preco-valor small {
  font-size: 0.4em;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--soft);
}

.hero__preco-nota {
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--soft);
}

.hero__note {
  margin-top: 0.9rem;
  font-size: var(--fs-small);
  color: var(--soft);
}

/* Barra de confiança */
.trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.4rem;
  margin-top: 1.5rem;
  font-size: var(--fs-small);
  color: var(--soft);
}

.trust li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.trust li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra);
}

.trust strong {
  color: var(--ink);
}

/* ---------- Mural de recadinhos ---------- */
.mural {
  position: relative;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-bottom: 1.75rem;
}

.mural__card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  box-shadow: 0 14px 34px rgba(56, 41, 31, 0.12);
  text-align: left;
}

.mural__card p {
  font-size: var(--fs-small);
  line-height: 1.45;
  margin-bottom: 0.45rem;
}

.mural__card span {
  font-size: var(--fs-label);
  font-weight: 800;
  color: var(--terra-text);
}

.mural__card--1 { transform: rotate(-2deg); }
.mural__card--2 { transform: rotate(1.5deg); }
.mural__card--3 { transform: rotate(-1deg); }

.mural__card--sabrina {
  background: var(--peach);
  transform: rotate(2deg);
}

.mural__card--sabrina span {
  color: var(--terra-text);
}

.mural__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: var(--fs-label);
  color: var(--soft);
}

@media (min-width: 900px) {
  .hero__grid {
    flex-direction: row;
    text-align: left;
    gap: 4.5rem;
    align-items: center;
  }
  .hero__text {
    flex: 1;
    align-items: flex-start;
  }
  .hero__preco {
    align-items: flex-start;
  }
  .trust {
    justify-content: flex-start;
  }
  .mural {
    flex-shrink: 0;
  }
}

/* ============================================================
   PRA QUEM É (faixa peach)
   ============================================================ */
.pertence {
  background: var(--peach);
  padding: clamp(4rem, 10vw, 6.5rem) 1.25rem;
}

.pertence__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pertence__text {
  font-size: var(--fs-subhead);
  line-height: 1.65;
  color: var(--ink);
  max-width: var(--measure);
  margin: 0 auto;
}

/* ============================================================
   O QUE TEM DENTRO
   ============================================================ */
.dentro {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 6.5rem) 1.25rem;
}

.dentro__head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.dentro__grid {
  display: grid;
  gap: 1.4rem;
}

.dentro-card {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(56, 41, 31, 0.08);
}

.dentro-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--peach);
  border-radius: 18px;
  font-size: var(--fs-title);
  margin-bottom: 1rem;
}

.dentro-card h3 {
  font-family: var(--serif);
  font-size: var(--fs-title);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.dentro-card p {
  color: var(--soft);
  font-size: var(--fs-small);
}

@media (min-width: 760px) {
  .dentro__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   QUEM CUIDA
   ============================================================ */
.cuida {
  background: var(--panel);
  padding: clamp(4rem, 10vw, 6.5rem) 1.25rem;
}

.cuida__inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.cuida__foto {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 5px solid var(--peach);
  margin: 0 auto;
}

.cuida__text {
  text-align: center;
}

.cuida__meta {
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terra-text);
  margin-bottom: 1rem;
}

.cuida__text > p {
  color: var(--soft);
  max-width: var(--measure);
  margin: 0 auto 0.9rem;
}

.cuida__key {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--fs-lead) !important;
  color: var(--ink) !important;
}

@media (min-width: 760px) {
  .cuida__inner {
    grid-template-columns: auto 1fr;
    gap: 3rem;
  }
  .cuida__text {
    text-align: left;
  }
  .cuida__text > p {
    margin-left: 0;
  }
}

/* ============================================================
   ASSINATURA
   ============================================================ */
.assinar {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 6.5rem) 1.25rem;
}

.assinar__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.assinar__card {
  background: var(--panel);
  border: 2px solid var(--terra);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 6vw, 3rem);
  text-align: center;
  box-shadow: 0 24px 55px rgba(56, 41, 31, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.assinar__nome {
  font-family: var(--serif);
  font-size: var(--fs-title);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.assinar__valor {
  font-family: var(--serif);
  font-size: var(--fs-figure);
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 1.4rem;
}

.assinar__valor span {
  font-size: 0.38em;
  font-family: var(--sans);
  font-weight: 700;
  vertical-align: super;
  color: var(--soft);
}

.assinar__valor small {
  font-size: 0.32em;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--soft);
}

.assinar__card .checklist {
  text-align: left;
  margin-bottom: 1.6rem;
}

.assinar__cta {
  width: 100%;
}

.assinar__note {
  margin-top: 1rem;
  font-size: var(--fs-small);
  color: var(--soft);
}

.assinar__ancora {
  text-align: center;
  margin-top: 1.75rem;
  font-size: var(--fs-small);
  font-style: italic;
  color: var(--soft);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 6rem) 1.25rem;
}

.faq__head {
  margin-bottom: 2.25rem;
}

.faq__list {
  display: grid;
  gap: 0.9rem;
}

.faq__item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.4rem 1.4rem;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--ink);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--peach);
  color: var(--terra-dark);
  border-radius: 50%;
  font-size: var(--fs-lead);
  font-weight: 700;
  transition: transform 0.3s var(--ease);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  color: var(--soft);
  padding: 0 0 1.2rem;
}

.faq__item a {
  color: var(--terra-text);
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================================
   CTA FINAL (bloco terracota)
   ============================================================ */
.final {
  background: var(--terra-btn);
  color: #fff;
  text-align: center;
  padding: clamp(4rem, 12vw, 7rem) 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.final__title {
  font-family: var(--serif);
  font-size: var(--fs-headline);
  font-weight: 600;
  line-height: 1.12;
  max-width: 22ch;
}

.final__note {
  font-size: var(--fs-small);
  opacity: 0.92;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.25rem 5.5rem;
  color: var(--soft);
  font-size: var(--fs-small);
}

.footer__grid {
  max-width: var(--maxw);
  margin: 0 auto 2rem;
  display: grid;
  gap: 1.75rem;
  text-align: center;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.footer__logo {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  font-size: var(--fs-lead);
}

.footer__logo span {
  color: var(--terra-text);
}

/* Selo discreto: garantia + preço como último lembrete */
.footer__selo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-label);
  font-weight: 700;
  color: var(--terra-text);
  background: var(--peach);
  border-radius: 999px;
  padding: 0.45em 1em;
  margin-top: 0.35rem;
}

.footer__selo svg {
  width: 16px;
  height: 16px;
  stroke: var(--terra-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer__titulo {
  color: var(--ink);
  font-size: var(--fs-small);
  margin-bottom: 0.15rem;
}

.footer__col a {
  color: var(--terra-text);
  text-decoration: underline;
}

.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  font-size: var(--fs-label);
}

.footer__bottom a {
  color: var(--terra-text);
  text-decoration: underline;
}

@media (min-width: 760px) {
  .footer {
    padding-bottom: 2.5rem;
  }
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    text-align: left;
  }
  .footer__col {
    align-items: flex-start;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================================
   BARRA FIXA DE CONVERSÃO (mobile)
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(251, 245, 238, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 0.7rem 1rem;
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.sticky-cta__info strong {
  color: var(--ink);
  font-size: var(--fs-small);
}

.sticky-cta__info span {
  color: var(--terra-text);
  font-size: var(--fs-label);
  font-weight: 700;
}

@media (min-width: 860px) {
  .sticky-cta {
    display: none;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   REFINAMENTOS (rodada de revisão)
   ============================================================ */

/* Chip da Sabrina no hero: reconhecimento visual desde a 1ª dobra */
.hero__nutri {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1.1rem 0.45rem 0.45rem;
  margin-bottom: 1.6rem;
  text-align: left;
}

.hero__nutri img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid var(--peach);
}

.hero__nutri strong {
  display: block;
  font-size: var(--fs-small);
  color: var(--ink);
  line-height: 1.25;
}

.hero__nutri span {
  font-size: var(--fs-label);
  font-weight: 700;
  color: var(--terra-dark);
}

/* Ícones outline terracota nos cards (substituem os emojis) */
.dentro-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--terra);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Dupla de fotos da Sabrina: profissional (frente) + informal (trás) */
.cuida__fotos {
  position: relative;
  width: 230px;
  height: 210px;
  margin: 0 auto;
}

.cuida__fotos .cuida__foto {
  position: absolute;
  margin: 0;
}

.cuida__foto--informal {
  width: 150px;
  height: 150px;
  left: 0;
  top: 0;
  transform: rotate(-4deg);
}

.cuida__foto--pro {
  width: 175px;
  height: 175px;
  right: 0;
  bottom: 0;
  transform: rotate(3deg);
  border-color: var(--terra);
  box-shadow: 0 14px 34px rgba(56, 41, 31, 0.18);
}

/* Modo de foto única: a que sobrar vira central e reta, sem rotação.
   Vale para qualquer uma das duas, porque hoje é a profissional que
   está sozinha e antes era a informal. */
.cuida__fotos.sem-pro {
  width: 190px;
  height: 190px;
}

.cuida__fotos.sem-pro .cuida__foto {
  position: static;
  width: 190px;
  height: 190px;
  transform: none;
}

/* Selo de garantia em destaque (abaixo do botão de compra) */
.selo-garantia {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--peach);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  margin-top: 1.1rem;
  text-align: left;
  width: 100%;
}

.selo-garantia__icone {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--terra);
  border-radius: 50%;
}

.selo-garantia__icone svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.selo-garantia__texto strong {
  display: block;
  font-size: var(--fs-small);
  color: var(--ink);
}

.selo-garantia__texto span {
  font-size: var(--fs-small);
  color: var(--soft);
  line-height: 1.35;
}

/* ============================================================
   REFINAMENTOS (rodada 2): ponte do FAQ, prova da Sabrina,
   fechamento com citação
   ============================================================ */

/* Ponte de conversão após o FAQ */
.faq__ponte {
  margin-top: 2.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.faq__ponte p {
  font-family: var(--serif);
  font-size: var(--fs-lead);
  color: var(--ink);
}

/* Linha de prova específica da Sabrina. O pêssego já distingue o
   bloco; filete lateral seria redundante. */
.cuida__prova {
  background: var(--peach);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  font-size: var(--fs-small);
  color: var(--ink) !important;
  max-width: var(--measure);
  margin: 0 auto 1rem !important;
}

@media (min-width: 760px) {
  .cuida__prova {
    margin-left: 0 !important;
  }
}

/* Citação de prova social no fechamento */
.final__sub {
  font-size: var(--fs-subhead);
  max-width: 46ch;
}

.final__quote {
  max-width: 480px;
  background: rgba(0, 0, 0, 0.16);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin: 0.5rem 0;
}

.final__quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--fs-lead);
  line-height: 1.45;
  margin-bottom: 0.5rem;
}

.final__quote cite {
  font-style: normal;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Alvos de toque confortáveis: o piso do .btn vive na regra base */
.footer__col a,
.footer__bottom a,
.faq__item summary { display: inline-block; padding-block: 0.7em; }

/* ============================================================
   RITMO DE LEITURA
   A serifa da Fraunces pede mais ar que a Manrope.
   ============================================================ */
body {
  line-height: var(--lh-body);
}

.section-title,
.hero__title {
  line-height: var(--lh-headline);
}

/* Bloco terracota: texto claro sobre cor saturada */
.final__title,
.final__sub,
.final__quote p {
  line-height: 1.35;
  letter-spacing: 0.004em;
}

/* Medida de leitura: linha longa demais perde o olho na volta */
.pertence__text,
.dentro-card p,
.cuida__text > p,
.faq__item p,
.assinar__note,
.assinar__ancora,
.garantia p,
.footer__bottom p {
  max-width: var(--measure);
}

.pertence__text,
.assinar__note,
.assinar__ancora {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOCO VISÍVEL
   Mundo creme: o anel usa o cacau, que contrasta tanto com o
   creme quanto com o terracota dos botões.
   ============================================================ */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline-offset: 4px;
  border-radius: 999px;
}

/* Sobre o bloco terracota o anel inverte para o creme */
.final a:focus-visible,
.final button:focus-visible {
  outline-color: var(--bg);
}

/* ============================================================
   POR DENTRO DO GRUPO (prints reais)
   O Mural Torto é ilustrativo e por isso é torto e brincalhão.
   Esta seção é o oposto de propósito: prints retos, sem rotação,
   sem enfeite. Prova de verdade não precisa de charme, e o
   contraste entre as duas ajuda a leitora a saber qual é qual.
   ============================================================ */
.prints {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 6.5rem) 1.25rem;
}

.prints__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.prints__lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: var(--soft);
  max-width: var(--measure-lead);
  margin: 0 auto;
}

.prints__grid {
  display: grid;
  gap: 1.25rem;
  align-items: start; /* prints têm alturas diferentes: cada um fica no seu tamanho */
}

.print {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem;
  margin: 0;
  box-shadow: 0 12px 30px rgba(56, 41, 31, 0.07);
}

.print img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 6px);
  display: block;
}

.print figcaption {
  font-size: var(--fs-small);
  line-height: var(--lh-tight);
  color: var(--soft);
  padding: 0.85rem 0.4rem 0.25rem;
  text-align: center;
}

.prints__nota {
  margin-top: 2rem;
  text-align: center;
  font-size: var(--fs-label);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--soft);
}

@media (min-width: 760px) {
  .prints {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .prints__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
