/* =========================================================================
   alline hickerman | fisioterapia
   Folha de estilo compartilhada — tokens extraidos de gerar_vouchers.py
   ========================================================================= */

/* ------------------------------------------------------------------ TOKENS */
:root {
  /* Paleta — identica a dos vouchers impressos */
  --cream:      #F8F3E9;
  --cream-2:    #F2EADC;
  --cream-3:    #FCF8F0;
  --ink:        #4A443D;
  --ink-soft:   #8A8177;  /* valor da identidade impressa — só linhas e elementos decorativos */
  --ink-muted:  #6F695F;  /* versão do ink-soft aprovada em contraste (AA) para texto pequeno */
  --ink-body:   #544D45;
  --purple:     #7A5CA0;
  --purple-d:   #63467F;  /* usar em texto pequeno: contraste AA sobre creme */
  --purple-xd:  #4E3565;
  --line:       #DDD3C2;
  --white:      #FFFFFF;

  /* Tipografia */
  --font-sans:  'Jost', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', ui-serif, Georgia, serif;

  /* Escala tipografica fluida */
  --fs-display: clamp(2.5rem, 1.6rem + 4.2vw, 4.5rem);
  --fs-h1:      clamp(2rem,   1.4rem + 2.8vw, 3.25rem);
  --fs-h2:      clamp(1.6rem, 1.25rem + 1.7vw, 2.5rem);
  --fs-h3:      clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --fs-lead:    clamp(1.06rem, 1rem + 0.5vw, 1.3rem);
  --fs-body:    clamp(1rem, 0.97rem + 0.16vw, 1.09rem);
  --fs-small:   0.9rem;
  --fs-eyebrow: 0.78rem;

  /* Ritmo vertical e layout */
  --space-section: clamp(4rem, 2.5rem + 6vw, 8rem);
  --wrap:      1140px;
  --wrap-text: 720px;
  --gutter:    clamp(1.25rem, 0.75rem + 2.2vw, 3rem);
  --radius:    18px;
  --radius-sm: 12px;

  --shadow-soft:  0 1px 2px rgba(74,68,61,.05), 0 8px 28px -12px rgba(74,68,61,.16);
  --shadow-lift:  0 2px 4px rgba(74,68,61,.06), 0 22px 48px -18px rgba(74,68,61,.26);
  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* ------------------------------------------------------------- RESET LEVE */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* compensa o header fixo ao pular por ancora */
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.62;
  color: var(--ink-body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }

/* Grao de papel — mesma textura do voucher impresso */
.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: .045;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Foco visivel e consistente para navegacao por teclado */
:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2.5px solid var(--purple-d);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* -------------------------------------------------------------- UTILITARIOS */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}
.wrap--text { max-width: calc(var(--wrap-text) + var(--gutter) * 2); }

section { padding-block: var(--space-section); position: relative; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.bg-alt   { background: var(--cream-2); }
.bg-white { background: #FDFBF7; }
.bg-deep  { background: linear-gradient(160deg, var(--purple-d) 0%, var(--purple-xd) 100%); color: #F4EFF8; }
.bg-deep h2, .bg-deep h3, .bg-deep .display { color: #FFFFFF; }
.bg-deep .eyebrow { color: #D6C4EC; }
.bg-deep .eyebrow::before { background: #C0A8DE; }

.center { text-align: center; }
.center .lead, .center .section-intro { margin-inline: auto; }

/* Filete decorativo do voucher */
.hair {
  height: 1.5px;
  background: var(--line);
  border: 0;
  width: 100%;
}
.hair--short { width: 190px; }
.center .hair--short { margin-inline: auto; }

.diamond-rule {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-block: 22px;
}
.diamond-rule .hair { width: min(160px, 26vw); }
.diamond-rule svg { flex: none; }

/* ------------------------------------------------------------- TIPOGRAFIA */
h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 500; letter-spacing: -0.005em; }

.display {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-display);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display em {
  font-style: italic;
  color: var(--purple-d);
}

/* "VOUCHER" — serif espacada, exatamente como no impresso */
.wordmark-serif {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--purple-d);
  letter-spacing: .38em;
  text-indent: .38em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--purple-d);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--purple);
  flex: none;
}
.center .eyebrow::after {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--purple);
  flex: none;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--ink-body);
  max-width: 56ch;
  text-wrap: pretty;
}

.section-intro {
  max-width: 60ch;
  margin-top: 20px;
  color: var(--ink-body);
  text-wrap: pretty;
}

.section-head { margin-bottom: clamp(2.5rem, 1.6rem + 3vw, 4rem); }

strong, b { font-weight: 600; color: var(--ink); }
.hl { font-weight: 600; color: var(--purple-d); }

/* ---------------------------------------------------------------- BOTOES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 17px 32px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.25;
  text-align: center;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background-color .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease);
}
.btn svg { flex: none; }

.btn--primary {
  background: var(--purple-d);
  color: #fff;
  box-shadow: 0 2px 4px rgba(78,53,101,.18), 0 14px 30px -12px rgba(78,53,101,.55);
}
.btn--primary:hover {
  background: var(--purple-xd);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(78,53,101,.2), 0 20px 40px -14px rgba(78,53,101,.6);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--purple-d);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--purple);
  background: rgba(122,92,160,.06);
  transform: translateY(-2px);
}

.btn--light {
  background: #fff;
  color: var(--purple-xd);
  box-shadow: var(--shadow-lift);
}
.btn--light:hover { transform: translateY(-2px); background: #fff; }

.btn--lg { padding: 20px 40px; font-size: 1.08rem; }
.btn--block { width: 100%; }

.btn-note {
  margin-top: 14px;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}
.bg-deep .btn-note { color: #CDBBE4; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.center .cta-row { justify-content: center; }

/* ---------------------------------------------------------------- HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248,243,233,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1.5px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(248,243,233,.94);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 15px;
}

/* Marca — logo + wordmark, mesmo lockup do voucher */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
/* A marca é o arquivo vetorizado da logo original (assets/brand.svg),
   proporção 100:135,26 — sempre mais alta que larga. */
.brand__mark { flex: none; width: 26px; height: 35px; display: block; }
.brand__name {
  font-size: 1.22rem;
  font-weight: 300;
  letter-spacing: .012em;
  color: #5C554C;
  line-height: 1;
}
.brand__sub {
  display: block;
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .42em;
  text-transform: lowercase;
  color: var(--ink-muted);
  margin-top: 6px;
}

.site-header .btn { padding: 12px 24px; font-size: .95rem; }

@media (max-width: 620px) {
  .site-header__inner { padding-block: 12px; }
  .brand__name { font-size: 1.05rem; }
  .brand__mark { width: 23px; height: 31px; }
  .site-header .btn { padding: 11px 18px; font-size: .88rem; }
  .site-header .btn span { display: none; }
}

/* ------------------------------------------------------------------ HERO */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 2rem + 7vw, 7rem) clamp(4rem, 2.5rem + 6vw, 7.5rem);
  background:
    radial-gradient(120% 130% at 12% 8%, var(--cream-3) 0%, var(--cream) 48%, var(--cream-2) 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(2.5rem, 1rem + 5vw, 5rem);
  align-items: center;
}
.hero__content { max-width: 34rem; }
.hero .display { margin-bottom: 22px; }
.hero .lead { max-width: 34rem; }

/* Marca d'agua: raquete de beach tennis (SVG do voucher) */
.hero__watermark {
  position: absolute;
  top: 50%;
  right: -6%;
  translate: 0 -50%;
  width: min(680px, 62vw);
  pointer-events: none;
  z-index: 0;
  opacity: .085;
}

.hero__figure { position: relative; z-index: 1; }
.hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 220px 220px var(--radius) var(--radius);
  box-shadow: var(--shadow-lift);
}

/* Marcadores de confianca abaixo da hero */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1.5px solid var(--line);
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: var(--fs-small);
  color: var(--ink-muted);
  list-style: none;
}
.trust-row svg { flex: none; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__content { max-width: none; }
  .hero__figure { max-width: 420px; margin-inline: auto; }
  .hero__watermark { right: -22%; opacity: .06; }
}

/* ---------------------------------------------------------------- PILULA */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--purple-d);
  color: #fff;
  border-radius: 999px;
  padding: 11px 24px;
  font-size: .95rem;
  font-weight: 300;
  letter-spacing: .01em;
}
.pill b { font-weight: 600; }
.pill--soft {
  background: rgba(122,92,160,.11);
  color: var(--purple-xd);
  border: 1.5px solid rgba(122,92,160,.24);
}

/* ------------------------------------------------------------------ GRIDS */
.grid { display: grid; gap: clamp(1.25rem, .8rem + 1.6vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------ CARDS */
.card {
  background: #FDFBF7;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              border-color .25s var(--ease);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-body); text-wrap: pretty; }
.card__icon { margin-bottom: 20px; }

.card--lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(122,92,160,.36);
}
.bg-white .card, .bg-alt .card { background: var(--cream); }
.bg-alt .card { background: #FDFBF7; }

/* Cartao de sintoma — "voce reconhece isso?" */
.symptom {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: #FDFBF7;
  border: 1.5px solid var(--line);
  border-left: 3px solid var(--purple);
  border-radius: var(--radius-sm);
}
.symptom__q {
  font-weight: 500;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.4;
  margin-bottom: 6px;
}
.symptom__a { font-size: .96rem; color: var(--ink-body); }
.symptom__check { flex: none; margin-top: 2px; }

/* Passos numerados */
.step { position: relative; padding-top: 8px; }
.step__num {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--purple);
  opacity: .3;
  display: block;
  margin-bottom: 10px;
}
.step h3 { margin-bottom: 8px; }

/* Estatistica / numero de destaque */
.stat__value {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.2rem);
  line-height: 1;
  color: var(--purple-d);
  display: block;
  margin-bottom: 10px;
}
.stat__label { font-size: var(--fs-small); color: var(--ink-muted); }

/* ---------------------------------------------------------- DEPOIMENTOS */
.quote {
  background: #FDFBF7;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 1.2rem + 1.2vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote__mark {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  line-height: .6;
  color: var(--purple);
  opacity: .32;
  height: 1.6rem;
}
.quote p {
  font-size: 1.04rem;
  line-height: 1.62;
  color: var(--ink-body);
  text-wrap: pretty;
  flex: 1;
}
.quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1.5px solid var(--line);
  font-size: var(--fs-small);
}
.quote__who { font-weight: 500; color: var(--ink); }
.quote__meta { color: var(--ink-muted); }
.quote__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  background: var(--cream-2);
}


/* depoimento unico: nao usa a grade de 3, ocupa o centro da secao */
.quote--solo {
  max-width: 46rem;
  margin-inline: auto;
  padding: clamp(1.9rem, 1.4rem + 1.6vw, 2.8rem);
}
.quote--solo p { font-size: 1.12rem; line-height: 1.68; }
/* monograma no lugar da foto, enquanto nao houver retrato autorizado */
.quote__initials {
  width: 42px; height: 42px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--cream-2);
  border: 1.5px solid var(--line);
  color: var(--purple-d);
  font-size: .95rem;
  font-weight: 500;
}

/* -------------------------------------------------------- BLOCO DO VOUCHER */
.voucher-card {
  background: linear-gradient(150deg, var(--cream-3) 0%, var(--cream) 55%, var(--cream-2) 100%);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 1.2rem + 3vw, 3.5rem);
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.voucher-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  pointer-events: none;
}
.voucher-card > * { position: relative; }
.voucher-card .wordmark-serif {
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.3rem);
  display: block;
  margin-bottom: 4px;
}

.voucher-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 400px;
  margin: 32px auto;
  text-align: left;
}
.voucher-benefits li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  list-style: none;
  font-size: 1.04rem;
  color: var(--ink-body);
}
.voucher-benefits svg { flex: none; margin-top: 3px; }

/* Tecnicas — mesmos icones do impresso */
.tech-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 44px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1.5px solid var(--line);
}
.tech-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  font-size: .98rem;
  color: var(--ink-body);
  text-align: left;
  line-height: 1.3;
}
.tech-list svg { flex: none; }

/* -------------------------------------------------------------------- FAQ */
.faq { max-width: var(--wrap-text); margin-inline: auto; }
.faq details {
  border-bottom: 1.5px solid var(--line);
}
.faq details:first-of-type { border-top: 1.5px solid var(--line); }
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  line-height: 1.4;
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--purple-d); }
.faq summary::after {
  content: "";
  flex: none;
  width: 13px; height: 13px;
  margin-top: 6px;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  rotate: 45deg;
  transition: rotate .28s var(--ease);
}
.faq details[open] summary::after { rotate: -135deg; }
.faq details > div {
  padding: 0 4px 26px;
  color: var(--ink-body);
  max-width: 62ch;
  text-wrap: pretty;
}

/* ------------------------------------------------------------ CTA FINAL */
.final-cta { text-align: center; }
.final-cta .display { color: #fff; margin-bottom: 20px; }
.final-cta p { color: #E3D6F2; max-width: 52ch; margin-inline: auto; font-size: var(--fs-lead); }

/* ---------------------------------------------------------------- CONTATO */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.25rem, .8rem + 1.6vw, 2rem);
}
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item svg { flex: none; margin-top: 3px; }
.contact-item dt {
  font-size: var(--fs-eyebrow);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 5px;
}
.contact-item dd { color: var(--ink); font-size: 1.02rem; line-height: 1.45; }
.contact-item a { text-decoration: none; border-bottom: 1px solid var(--line); }
.contact-item a:hover { border-bottom-color: var(--purple); color: var(--purple-d); }

.map-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--purple-d);
  text-decoration: none;
  border-bottom: 1.5px solid var(--purple);
  padding-bottom: 1px;
}
.map-link:hover, .map-link:focus-visible { color: var(--purple); }

/* ----------------------------------------------------------------- RODAPE */
.site-footer {
  background: var(--cream-2);
  border-top: 1.5px solid var(--line);
  padding-block: clamp(2.5rem, 2rem + 2vw, 4rem) 2rem;
}
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1.5px solid var(--line);
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  list-style: none;
}
.site-footer__links a {
  text-decoration: none;
  font-size: var(--fs-small);
  color: var(--ink-body);
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.site-footer__links a:hover { color: var(--purple-d); border-bottom-color: var(--purple); }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: space-between;
  padding-top: 26px;
  font-size: .82rem;
  color: var(--ink-muted);
}

/* Card cruzado entre as duas vertentes da marca */
.crosslink {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 30px;
  margin-top: 36px;
  background: #FDFBF7;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
}
.crosslink p { font-size: .98rem; color: var(--ink-body); max-width: 46ch; }
.crosslink strong { display: block; color: var(--ink); font-size: 1.06rem; margin-bottom: 4px; }

/* ------------------------------------------------------- CTA FLUTUANTE MOBILE */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgba(248,243,233,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1.5px solid var(--line);
  display: none;
  translate: 0 110%;
  transition: translate .3s var(--ease);
}
.sticky-cta.is-visible { translate: 0 0; }

@media (max-width: 760px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 84px; }
}

/* -------------------------------------------------- ANIMACAO DE ENTRADA */
.reveal {
  opacity: 0;
  translate: 0 22px;
  transition: opacity .7s var(--ease), translate .7s var(--ease);
}
.reveal.is-in { opacity: 1; translate: 0 0; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; translate: 0 0; }
}

/* ------------------------------------------------------------- IMPRESSAO */
@media print {
  .site-header, .sticky-cta, .hero__watermark, .grain { display: none !important; }
  body { background: #fff; padding-bottom: 0; }
  .reveal { opacity: 1; translate: 0; }
}
