/* ==========================================================================
   Dra. Líria Daldoso — Médica Tricologista
   Design de referência: "SITE - DRA LIRIA DALDOSO @WAD DESIGN 2026"
   Canvas do arquivo original: 1920 px de largura.

   Espaçamentos padronizados:
     · faixa flutuante (cabeçalho) ...... 20 px em cima e embaixo
     · cada faixa de conteúdo ........... 80 px em cima e embaixo
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fontes
   -------------------------------------------------------------------------- */

/* Cherston — títulos e navegação. É uma fonte "caps only": as minúsculas
   desenham as mesmas formas das maiúsculas. Por isso o HTML usa capitalização
   normal e a renderização sai toda em caixa alta.
   O arquivo original vinha com o glifo "á" defeituoso (sem acento); o .woff2
   aqui já está corrigido — ver README. */
@font-face {
  font-family: "Cherston";
  src: url("../fonts/cherston-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cherston";
  src: url("../fonts/cherston-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Arapey — serifada dos destaques em itálico */
@font-face {
  font-family: "Arapey";
  src: url("../fonts/arapey-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arapey";
  src: url("../fonts/arapey-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Poppins — textos corridos */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-italic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Biondi Sans — rótulos em caixa alta com entreletra aberta.
   ATENÇÃO: subset extraído do PDF (só os caracteres usados no design).
   Ver README para a substituição pelo arquivo licenciado completo. */
@font-face {
  font-family: "Biondi Sans";
  src: url("../fonts/biondisans-rg.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Biondi Sans Lt";
  src: url("../fonts/biondisans-lt.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* August Script — exclusiva da assinatura da Dra. Líria */
@font-face {
  font-family: "August Script";
  src: url("../fonts/augustscript.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Escala: 1 unidade = 1 px do design (canvas de 1920).
     Abaixo de 1920 tudo encolhe proporcionalmente; acima, trava em 1:1. */
  --s: calc(100vw / 1920);

  --pad-y: calc(80 * var(--s));     /* respiro vertical de cada faixa */
  --gutter: calc(115 * var(--s));   /* margem lateral do conteúdo */
  --header-h: calc(104 * var(--s)); /* 20 + 64 (botão) + 20 */

  /* Paleta amostrada do arquivo original */
  --brown: #40332e;
  --brown-deep: #281b12;
  --brown-bar: #40332d;
  --gold: #ba966e;
  --gold-soft: #cdb18f;
  --gold-line: #ceb192;
  --cream: #f8efea;
  --cream-panel: #f5e9dc;
  --cream-card: #f4eae1;
  --cream-text: #f9f0ea;
  --cream-btn: #f1efea;
  --dot-off: #f2e5d7;

  --btn-grad: linear-gradient(90deg, #b99468 0%, #c2a07a 50%, #ccac8d 100%);

  --ff-title: "Cherston", "Trebuchet MS", sans-serif;
  --ff-serif: "Arapey", Georgia, serif;
  --ff-body: "Poppins", "Segoe UI", sans-serif;
  --ff-label: "Biondi Sans", "Cherston", sans-serif;
  --ff-label-lt: "Biondi Sans Lt", "Biondi Sans", sans-serif;
  --ff-sign: "August Script", "Segoe Script", cursive;
}

@media (min-width: 1920px) {
  :root { --s: 1px; }
}

/* --------------------------------------------------------------------------
   3. Base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--ff-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main { padding-top: var(--header-h); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure, figcaption { margin: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   4. Peças recorrentes
   -------------------------------------------------------------------------- */

.sec {
  position: relative;
  /* Tela cheia no desktop, descontando o cabeçalho flutuante. O padding
     continua garantindo os 80px quando o conteúdo é maior que a tela. */
  min-height: calc(100vh - var(--header-h));
  padding: var(--pad-y) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

/* Faixa em duas colunas: texto à esquerda, mídia à direita */
.sec__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(60 * var(--s));
  padding: 0 var(--gutter);
}
.sec__text { flex: 1 1 auto; min-width: 0; }
.sec__media { flex: none; }

/* Rótulo em caixa alta com entreletra aberta */
.eyebrow {
  font-family: var(--ff-label);
  font-size: calc(19.9 * var(--s));
  letter-spacing: calc(2.6 * var(--s));
  color: var(--gold);
  white-space: nowrap;
}

/* Filete divisor dourado */
.rule {
  width: calc(113 * var(--s));
  height: calc(4 * var(--s));
  background: var(--gold-line);
  border: 0;
  margin: calc(13 * var(--s)) 0 calc(50 * var(--s));
}
.rule--tight { margin: calc(30 * var(--s)) 0 calc(26 * var(--s)); }

/* Título principal em Cherston */
.title {
  font-family: var(--ff-title);
  font-weight: 300;
  color: var(--brown);
  letter-spacing: calc(0.5 * var(--s));
  line-height: 1.2;
}
.title em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0;
}

/* Parágrafo padrão */
.lead {
  margin-top: calc(36 * var(--s));
  font-size: calc(18 * var(--s));
  line-height: calc(28 * var(--s));
  color: var(--brown);
}

/* Botão pílula dourado */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(26 * var(--s));
  width: calc(374 * var(--s));
  height: calc(80 * var(--s));
  margin-top: calc(46 * var(--s));
  border-radius: calc(40 * var(--s));
  background: var(--btn-grad);
  color: var(--cream-btn);
  font-family: var(--ff-title);
  font-weight: 300;
  font-size: calc(21 * var(--s));
  letter-spacing: calc(2.4 * var(--s));
  white-space: nowrap;
  box-shadow: calc(6 * var(--s)) calc(8 * var(--s)) calc(18 * var(--s)) rgba(90, 62, 34, .28);
  transition: transform .35s cubic-bezier(.2, .7, .3, 1), box-shadow .35s ease,
              filter .35s ease, letter-spacing .35s ease;
}
@media (hover: none) {
  .btn:hover { transform: none; filter: none; letter-spacing: calc(2.4 * var(--s)); }
  .btn:hover .btn__arrow { transform: none; }
}
.btn:hover {
  transform: translateY(calc(-4 * var(--s)));
  filter: brightness(1.07);
  box-shadow: calc(8 * var(--s)) calc(16 * var(--s)) calc(30 * var(--s)) rgba(90, 62, 34, .38);
  letter-spacing: calc(3 * var(--s));
}
.btn:active { transform: translateY(calc(-1 * var(--s))); transition-duration: .08s; }
.btn__arrow {
  width: calc(42 * var(--s));
  flex: none;
  transition: transform .35s cubic-bezier(.2, .7, .3, 1);
}
.btn__arrow path { fill: currentColor; }
/* a seta desliza para frente quando o mouse chega */
.btn:hover .btn__arrow { transform: translateX(calc(10 * var(--s))); }

/* a seta solta dos cards acompanha o mesmo gesto */
.arrow { transition: transform .35s cubic-bezier(.2, .7, .3, 1); }
.trat-card:hover .arrow { transform: translateY(-50%) translateX(calc(10 * var(--s))); }
.post:hover .post__more svg { transform: translateX(calc(10 * var(--s))); }
.post__more svg { transition: transform .35s cubic-bezier(.2, .7, .3, 1); }

/* Seta isolada (cards) */
.arrow { width: calc(52 * var(--s)); color: var(--gold); }

/* Botão de play sobre mídia */
.play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(103 * var(--s));
  height: calc(103 * var(--s));
  border-radius: 50%;
  border: calc(1.5 * var(--s)) solid rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(calc(2 * var(--s)));
  display: grid;
  place-items: center;
  transition: background .3s ease, transform .3s ease;
}
.play svg { width: calc(28 * var(--s)); color: #fff; margin-left: calc(6 * var(--s)); }
a:hover > .play { background: rgba(255, 255, 255, .32); transform: translate(-50%, -50%) scale(1.06); }

/* --------------------------------------------------------------------------
   5. Cabeçalho (faixa flutuante)
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: calc(20 * var(--s)) 0;
  background: var(--cream);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: calc(60 * var(--s));
  max-width: calc(1920 * var(--s));
  margin: 0 auto;
  padding: 0 calc(107 * var(--s)) 0 calc(119 * var(--s));
}

.brand { flex: none; display: block; width: calc(242.6 * var(--s)); }

.nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(32 * var(--s));
}
.nav a {
  font-family: var(--ff-title);
  font-weight: 300;
  font-size: calc(18 * var(--s));
  letter-spacing: calc(1.6 * var(--s));
  color: var(--brown);
  white-space: nowrap;
  transition: color .25s ease;
}
.nav a:hover,
.nav a.is-active { color: var(--gold); }

.header-cta {
  flex: none;
  width: calc(299 * var(--s));
  height: calc(64 * var(--s));
  margin-top: 0;
  gap: 0;
  border-radius: calc(32 * var(--s));
  font-size: calc(18 * var(--s));
  letter-spacing: calc(2.2 * var(--s));
}

/* Botão sanduíche (só aparece no layout compacto) */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--brown);
  position: relative;
  transition: background .2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px; height: 2px;
  background: var(--brown);
  transition: transform .3s ease;
}
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-8px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Faixa 1 — Hero
   -------------------------------------------------------------------------- */

.sec--hero {
  background-image: url("../img/bg-hero.webp");
}
.hero__text { max-width: calc(960 * var(--s)); }
.hero__title { font-size: calc(60 * var(--s)); line-height: calc(72 * var(--s)); }
.hero__lead { max-width: calc(705 * var(--s)); }

/* --------------------------------------------------------------------------
   7. Faixa 2 — Tratamentos
   -------------------------------------------------------------------------- */

.sec--tratamentos { background-image: url("../img/bg-tratamentos.webp"); }

.trat__text { max-width: calc(640 * var(--s)); }
.trat__title { font-size: calc(72 * var(--s)); line-height: calc(86.4 * var(--s)); }
.trat__lead { max-width: calc(518 * var(--s)); }

.trat__cards {
  width: calc(888 * var(--s));
  margin-right: calc(92 * var(--s));   /* deixa o arco dourado do fundo à mostra */
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--s));
}
.trat-card {
  position: relative;
  display: flex;
  align-items: center;
  height: calc(192 * var(--s));
  border-radius: calc(28 * var(--s));
  background: var(--cream-card);
  box-shadow: calc(4 * var(--s)) calc(6 * var(--s)) calc(16 * var(--s)) rgba(120, 92, 60, .16);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.trat-card:hover {
  transform: translateX(calc(-6 * var(--s)));
  box-shadow: calc(6 * var(--s)) calc(10 * var(--s)) calc(22 * var(--s)) rgba(120, 92, 60, .24);
}
/* A foto é uma faixa larga com o assunto à direita e fundo creme à esquerda;
   atravessa o card inteiro. O object-position reproduz o enquadramento de cada card. */
.trat-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}
.trat-card:nth-child(2) .trat-card__photo { object-position: 58% center; }
.trat-card:nth-child(3) .trat-card__photo { object-position: 45% center; }

.trat-card__bar {
  position: relative;
  flex: none;
  width: calc(10 * var(--s));
  height: calc(75 * var(--s));
  margin-left: calc(62 * var(--s));
  background: var(--gold);
}
.trat-card__title {
  position: relative;
  margin-left: calc(44 * var(--s));
  font-family: var(--ff-label);
  color: var(--gold);
  letter-spacing: calc(2.6 * var(--s));
  line-height: calc(25.3 * var(--s));
}
.trat-card__title--lg { font-size: calc(29.7 * var(--s)); }
.trat-card__title--sm { font-size: calc(21.1 * var(--s)); }
.trat-card__arrow {
  position: absolute;
  right: calc(57 * var(--s));
  top: 50%;
  transform: translateY(-50%);
}

/* --------------------------------------------------------------------------
   8. Faixa 3 — Pacientes (antes e depois)
   -------------------------------------------------------------------------- */

.sec--pacientes { background-image: url("../img/bg-cream.webp"); }

.pac__text { max-width: calc(580 * var(--s)); }
.pac__title {
  font-size: calc(100 * var(--s));
  line-height: calc(110 * var(--s));
  letter-spacing: calc(2 * var(--s));
}
.pac__sub {
  max-width: calc(572 * var(--s));
  font-size: calc(48 * var(--s));
  line-height: calc(58 * var(--s));
  color: var(--brown);
}
.pac__sub em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: calc(60 * var(--s));
  color: var(--gold);
}

.pac__media { width: calc(1066 * var(--s)); }
.pac__stage { width: 100%; height: calc(597 * var(--s)); overflow: hidden; }
.pac__track { display: flex; height: 100%; transition: transform .6s cubic-bezier(.4, 0, .2, 1); }
.pac-slide { flex: 0 0 100%; display: flex; gap: calc(13 * var(--s)); height: 100%; }
.pac-pair { position: relative; display: flex; gap: calc(13 * var(--s)); }
.pac-pair + .pac-pair { margin-left: calc(27 * var(--s)); }

.pac-card {
  position: relative;
  width: calc(250 * var(--s));
  height: 100%;
  border-radius: calc(22 * var(--s));
  overflow: hidden;
  background: #efe6dd;
  box-shadow: calc(3 * var(--s)) calc(5 * var(--s)) calc(14 * var(--s)) rgba(120, 92, 60, .18);
}
.pac-card img { width: 100%; height: calc(542 * var(--s)); object-fit: cover; }
/* "ANTES" e "DEPOIS" são texto do tema — a cliente só troca as fotos */
.pac-card__label {
  position: absolute;
  inset: auto 0 0 0;
  height: calc(55 * var(--s));
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--cream-text);
  font-family: var(--ff-label);
  font-size: calc(19.9 * var(--s));
  letter-spacing: calc(3.2 * var(--s));
}
.pac-pair__badge {
  position: absolute;
  left: 50%;
  top: calc(327.5 * var(--s));
  transform: translate(-50%, -50%);
  z-index: 2;
  width: calc(69 * var(--s));
  height: calc(69 * var(--s));
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
}
.pac-pair__badge svg { width: calc(30 * var(--s)); color: #fff; }

/* Controles dos carrosséis */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(31 * var(--s));
  margin-top: calc(56 * var(--s));
}
.carousel-nav button { display: grid; place-items: center; color: var(--gold); }
.carousel-nav__arrow svg { width: calc(52 * var(--s)); display: block; }
.carousel-nav__dots { display: flex; align-items: center; gap: calc(31 * var(--s)); }
.carousel-nav__dots button {
  width: calc(18 * var(--s));
  height: calc(18 * var(--s));
  border-radius: 50%;
  border: calc(1.5 * var(--s)) solid var(--gold);
  background: transparent;
  transition: background .25s ease;
}
.carousel-nav__dots button.is-active { background: var(--gold); }
.carousel-nav__dots button:disabled { opacity: .45; cursor: default; }

/* --------------------------------------------------------------------------
   9. Faixa 4 — Resultados (depoimentos em vídeo)
   -------------------------------------------------------------------------- */

.sec--resultados { background-image: url("../img/bg-cream.webp"); }

.res__text { max-width: calc(660 * var(--s)); }
.res__title { font-size: calc(72 * var(--s)); line-height: calc(86.4 * var(--s)); }
.res__title em { font-size: calc(94.9 * var(--s)); line-height: 0; }
.res__lead { max-width: calc(658 * var(--s)); }

.res__media { width: calc(920 * var(--s)); }
.res__stage { width: 100%; height: calc(513 * var(--s)); overflow: hidden; }
.res__track { display: flex; height: 100%; transition: transform .6s cubic-bezier(.4, 0, .2, 1); }
.res-slide { flex: 0 0 100%; display: flex; gap: calc(26 * var(--s)); height: 100%; }

.res-card {
  position: relative;
  display: block;
  width: calc(447 * var(--s));
  height: 100%;
  border-radius: calc(26 * var(--s));
  overflow: hidden;
  box-shadow: calc(4 * var(--s)) calc(8 * var(--s)) calc(20 * var(--s)) rgba(90, 62, 34, .26);
  transition: transform .35s ease;
}
.res-card:hover { transform: translateY(calc(-4 * var(--s))); }
.res-card img { width: 100%; height: 100%; object-fit: cover; }
/* véu escuro para a legenda ficar legível sobre qualquer foto */
.res-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 6, 0) 42%, rgba(20, 12, 6, .78) 100%);
}
.res-card__caption {
  position: absolute;
  left: calc(34 * var(--s));
  right: calc(34 * var(--s));
  bottom: calc(42 * var(--s));
  color: var(--cream-text);
}
.res-card__name {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: calc(27 * var(--s));
  line-height: 1.15;
}
.res-card__name span { font-size: calc(21 * var(--s)); }
.res-card__tag {
  display: block;
  margin-top: calc(8 * var(--s));
  font-family: var(--ff-label);
  font-size: calc(13 * var(--s));
  letter-spacing: calc(2 * var(--s));
}
.res-card__caption::after {
  content: "";
  display: block;
  width: calc(70 * var(--s));
  height: calc(1.5 * var(--s));
  margin-top: calc(14 * var(--s));
  background: var(--gold);
}

/* --------------------------------------------------------------------------
   10. Faixa 5 — Quem sou eu (variante escura)
   -------------------------------------------------------------------------- */

.sec--sobre {
  background-image: url("../img/bg-quemsoueu.webp");
  background-color: #1f140e;
}
.sobre__content { gap: calc(46 * var(--s)); }
.sobre__text { max-width: calc(700 * var(--s)); }

.sobre__title {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: calc(122.3 * var(--s));
  line-height: calc(120 * var(--s));
  color: var(--cream-text);
  letter-spacing: calc(1 * var(--s));
}
.sobre__title em { font-style: italic; color: var(--gold); }

.sobre__rule { background: var(--gold); margin: calc(40 * var(--s)) 0 calc(44 * var(--s)); }
.sobre__lead {
  max-width: calc(650 * var(--s));
  margin-top: 0;
  font-size: calc(24 * var(--s));
  line-height: calc(28 * var(--s));
  color: var(--cream-text);
}
.sobre__lead em { font-style: italic; color: var(--gold); }

.sobre__sign {
  margin-top: calc(30 * var(--s));
  font-family: var(--ff-sign);
  font-weight: 700;
  font-size: calc(61.2 * var(--s));
  line-height: 1;
  color: var(--gold);
}

.sobre__frame {
  flex: none;
  width: calc(660 * var(--s));
  height: calc(818 * var(--s));
  border: calc(1.5 * var(--s)) solid var(--gold);
  border-radius: calc(56 * var(--s));
  padding: calc(12 * var(--s));
}
.sobre__media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: calc(46 * var(--s));
  overflow: hidden;
}
.sobre__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }

.sobre__aside {
  flex: none;
  display: flex;
  align-items: center;
  gap: calc(40 * var(--s));
}
.sobre__words { display: flex; flex-direction: column; align-items: center; }
.sobre__words span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--ff-label-lt);
  font-size: calc(19.9 * var(--s));
  letter-spacing: calc(3 * var(--s));
  color: var(--gold);
}
.sobre__words i {
  display: block;
  width: calc(8 * var(--s));
  height: calc(8 * var(--s));
  border-radius: 50%;
  background: var(--gold);
  margin: calc(22 * var(--s)) 0;
}
.sobre__seal { width: calc(150 * var(--s)); }

/* --------------------------------------------------------------------------
   11. Faixa 6 — Onde estamos (a clínica)
   -------------------------------------------------------------------------- */

.sec--clinica {
  background-image: url("../img/bg-clinica.webp");
}

/* --- fundo em slideshow com zoom lento (Ken Burns) ---------------------
   As fotos ficam atrás de tudo; o véu de leitura continua por cima. */
.clinica__banner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.clinica__banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  /* O zoom é transição, não animação: assim a foto que sai continua se
     movendo devagar enquanto some, em vez de dar um pulo de volta ao
     tamanho inicial. A escala é bem mais lenta que a troca (12s contra
     5s), então o movimento nunca "chega ao fim" e para na tela. */
  transition: opacity 2s ease, transform 12s linear;
  will-change: opacity, transform;
}
.clinica__banner img.is-active {
  opacity: 1;
  transform: scale(1.18);
}

/* véu claro à esquerda para o texto respirar sobre a foto */
.sec--clinica::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Cobertura maior que a original: as fotos reais da clínica são bem
     claras e variam entre si, então o texto precisa de base garantida. */
  background: linear-gradient(90deg,
              rgba(248, 240, 233, .97) 0%,
              rgba(248, 240, 233, .93) 30%,
              rgba(248, 240, 233, .55) 48%,
              rgba(248, 240, 233, .12) 62%,
              rgba(248, 240, 233, 0) 72%);
  pointer-events: none;
  z-index: 1;
}
.sec--clinica .sec__content { z-index: 2; }
.cli__text { max-width: calc(760 * var(--s)); }
.cli__title { font-size: calc(100 * var(--s)); line-height: calc(104 * var(--s)); letter-spacing: calc(2 * var(--s)); }
.cli__title em {
  display: block;
  font-size: calc(120.6 * var(--s));
  line-height: calc(126 * var(--s));
  margin-left: calc(6 * var(--s));
}
.cli__lead { max-width: calc(578 * var(--s)); }

/* --------------------------------------------------------------------------
   12. Faixa 7 — Investigamos a causa
   -------------------------------------------------------------------------- */

.sec--causa { background-image: url("../img/bg-tratamentos.webp"); }

.causa__text { max-width: calc(780 * var(--s)); }
.causa__title { font-size: calc(72 * var(--s)); line-height: calc(86.4 * var(--s)); }
/* a palavra "causa." encaixa logo abaixo da última linha, como no arquivo original */
.causa__title em {
  display: block;
  font-size: calc(134.8 * var(--s));
  line-height: calc(110 * var(--s));
  margin: calc(-26 * var(--s)) 0 0 calc(-8 * var(--s));
}
.causa__lead { max-width: calc(650 * var(--s)); }

.causa__watermark {
  position: absolute;
  right: calc(20 * var(--s));
  bottom: calc(-90 * var(--s));
  width: calc(395 * var(--s));
  opacity: .45;
  pointer-events: none;
}

.causa__grid {
  width: calc(700 * var(--s));
  margin-right: calc(178 * var(--s));   /* deixa o arco dourado do fundo à mostra */
  display: grid;
  grid-template-columns: calc(365 * var(--s)) calc(300 * var(--s));
  row-gap: calc(58 * var(--s));
}
.feature { position: relative; }
.feature__icon {
  position: absolute;
  left: 0;
  top: calc(2 * var(--s));
  width: calc(58 * var(--s));
  height: calc(50 * var(--s));
  display: flex;
  align-items: center;
}
.feature__icon img { max-width: 100%; max-height: 100%; width: auto; }
.feature__title {
  margin: calc(8 * var(--s)) 0 0 calc(80 * var(--s));
  font-family: var(--ff-label);
  font-size: calc(17 * var(--s));
  line-height: calc(20.4 * var(--s));
  letter-spacing: calc(2 * var(--s));
  color: var(--gold);
}
.feature__text {
  margin-top: calc(14 * var(--s));
  width: calc(288 * var(--s));
  font-size: calc(14 * var(--s));
  line-height: calc(16.8 * var(--s));
  color: var(--brown);
}
.causa__grid > .feature:nth-child(even) .feature__text { width: calc(278 * var(--s)); }

/* --------------------------------------------------------------------------
   13. Faixa 8 — Blog
   -------------------------------------------------------------------------- */

.sec--blog { background-image: url("../img/bg-cream.webp"); }
.blog__content { display: block; }

.blog__title { font-size: calc(59.2 * var(--s)); line-height: calc(72 * var(--s)); }
.blog__title em { font-size: calc(111 * var(--s)); line-height: 0; margin-left: calc(10 * var(--s)); }
.blog__lead { margin-top: calc(20 * var(--s)); }
.blog__rule { margin: calc(22 * var(--s)) 0 calc(40 * var(--s)); }

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(60 * var(--s));
}
.post {
  display: flex;
  flex-direction: column;
  border-radius: calc(18 * var(--s));
  overflow: hidden;
  background: var(--cream);
  box-shadow: calc(3 * var(--s)) calc(6 * var(--s)) calc(16 * var(--s)) rgba(120, 92, 60, .14);
  transition: transform .35s ease, box-shadow .35s ease;
}
.post:hover {
  transform: translateY(calc(-6 * var(--s)));
  box-shadow: calc(4 * var(--s)) calc(12 * var(--s)) calc(24 * var(--s)) rgba(120, 92, 60, .22);
}
.post__thumb { flex: none; height: calc(257 * var(--s)); overflow: hidden; }
.post__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post__body { flex: 1; padding: calc(24 * var(--s)) calc(25 * var(--s)) calc(30 * var(--s)); }
.post__cat {
  font-family: var(--ff-label);
  font-size: calc(19.9 * var(--s));
  letter-spacing: calc(2.6 * var(--s));
  color: var(--gold);
}
.post__title {
  margin-top: calc(14 * var(--s));
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: calc(30 * var(--s));
  line-height: calc(36 * var(--s));
  color: var(--brown);
}
.post__excerpt {
  margin-top: calc(20 * var(--s));
  font-size: calc(15 * var(--s));
  line-height: calc(18 * var(--s));
  color: var(--brown);
}
.post__more {
  flex: none;
  height: calc(65 * var(--s));
  padding: 0 calc(25 * var(--s));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brown-bar);
  color: var(--gold);
  font-family: var(--ff-label);
  font-size: calc(19.9 * var(--s));
  letter-spacing: calc(2.6 * var(--s));
}
.post__more svg { width: calc(42 * var(--s)); color: var(--gold); }

/* --------------------------------------------------------------------------
   14. Rodapé
   -------------------------------------------------------------------------- */

.site-footer {
  position: relative;
  background: url("../img/bg-footer.webp") center / cover no-repeat;
  overflow: hidden;
}
.footer__brand { padding: var(--pad-y) 0; display: grid; place-items: center; }
.footer__brand img { width: calc(674 * var(--s)); }

.footer__panel {
  background: var(--cream-panel);
  border-radius: calc(80 * var(--s)) calc(80 * var(--s)) 0 0;
  padding: var(--pad-y) calc(348 * var(--s));
}
.footer__cols {
  display: grid;
  grid-template-columns: calc(534 * var(--s)) calc(510 * var(--s)) auto;
}
.footer__col h2 {
  font-family: var(--ff-title);
  font-weight: 300;
  font-size: calc(26.7 * var(--s));
  letter-spacing: calc(1.6 * var(--s));
  color: var(--brown);
}
.footer__col p,
.footer__col a {
  display: block;
  margin-top: calc(10 * var(--s));
  font-size: calc(18 * var(--s));
  line-height: calc(21.6 * var(--s));
  color: var(--gold);
}
.footer__col a { margin-top: calc(2 * var(--s)); transition: color .25s ease; }
.footer__col a:hover { color: var(--brown); }

.social { display: flex; gap: calc(16 * var(--s)); margin-top: calc(14 * var(--s)); }
.social a {
  width: calc(36 * var(--s));
  height: calc(36 * var(--s));
  border-radius: 50%;
  border: calc(1.4 * var(--s)) solid var(--gold);
  display: grid;
  place-items: center;
  margin-top: 0;
  transition: background .25s ease;
}
.social svg { width: calc(19 * var(--s)); height: calc(19 * var(--s)); fill: var(--gold); transition: fill .25s ease; }
.social a:hover { background: var(--gold); }
.social a:hover svg { fill: var(--cream-panel); }

.footer__credits {
  margin-top: calc(64 * var(--s));
  padding-top: calc(26 * var(--s));
  border-top: 1px solid rgba(186, 150, 110, .28);
  text-align: center;
  font-size: calc(14 * var(--s));
  line-height: calc(22 * var(--s));
  color: rgba(64, 51, 46, .62);
}
.footer__credits a { color: var(--gold); transition: color .25s ease; }
.footer__credits a:hover { color: var(--brown); }

/* --------------------------------------------------------------------------
   15. Lightbox de vídeo
   -------------------------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 4vmin;
  background: rgba(20, 12, 6, .88);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .3s ease;
}
.lightbox.is-open { display: grid; }
.lightbox.is-visible { opacity: 1; }

.lightbox__frame {
  position: relative;
  width: min(1100px, 92vw);
  max-height: 86vh;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}
.lightbox__frame iframe,
.lightbox__frame video { width: 100%; height: 100%; border: 0; display: block; }

/* Shorts e vídeos verticais: a moldura acompanha o formato do vídeo,
   senão sobraria tarja preta dos dois lados. */
.lightbox--vertical .lightbox__frame {
  width: auto;
  height: min(86vh, 900px);
  aspect-ratio: 9 / 16;
}

.lightbox__close {
  position: absolute;
  top: max(3vmin, 18px);
  right: max(3vmin, 18px);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  transition: background .25s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .16); }

/* --------------------------------------------------------------------------
   16. Animação de entrada
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2, .6, .2, 1), transform .8s cubic-bezier(.2, .6, .2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .clinica__banner img { transition: opacity .4s ease; }
  .clinica__banner img.is-active { transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   17. Layout compacto (tablet e celular)
   -------------------------------------------------------------------------- */

@media (max-width: 1023px) {
  :root {
    --s: 1px;
    --pad-y: 56px;
    --gutter: 22px;
    --header-h: 84px;
  }

  /* tela cheia é só no desktop; aqui a faixa acompanha o conteúdo */
  .sec { min-height: 0; display: block; }

  .sec__content {
    flex-direction: column;
    align-items: stretch;
    gap: 34px;
  }
  .sec__text, .sec__media,
  .hero__text, .hero__lead, .trat__text, .trat__lead, .pac__text, .pac__sub,
  .res__text, .res__lead, .sobre__text, .sobre__lead, .cli__text, .cli__lead,
  .causa__text, .causa__lead, .trat__cards, .causa__grid {
    max-width: none;
    width: auto;
  }

  .eyebrow { font-size: 13px; letter-spacing: 2px; }
  .rule { margin: 14px 0 22px; }
  .rule--tight { margin: 20px 0 18px; }
  .lead { margin-top: 22px; font-size: 16px; line-height: 26px; }
  .btn { width: auto; height: 60px; padding: 0 30px; margin-top: 28px; font-size: 16px; gap: 16px; }
  .btn__arrow { width: 30px; }
  .arrow { width: 34px; }

  /* cabeçalho compacto */
  main { padding-top: var(--header-h); }
  .site-header { padding: 0; height: var(--header-h); }
  .site-header__inner { max-width: none; height: 100%; padding: 0 20px; gap: 0; }
  .brand { width: 150px; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 0 22px;
    background: var(--cream);
    border-top: 1px solid rgba(186, 150, 110, .3);
    box-shadow: 0 18px 30px rgba(64, 51, 46, .12);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
  }
  .nav.is-open { max-height: 70vh; padding: 8px 22px 22px; }
  .nav a { padding: 14px 0; font-size: 17px; width: 100%; }

  /* o conteúdo precisa ficar acima dos véus de leitura */
  .sec__content { z-index: 1; }

  /* hero */
  .sec--hero { min-height: 88vh; background-position: 78% center; }
  .sec--clinica { min-height: 78vh; }
  .sec--hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
                rgba(248, 240, 233, .95) 0%,
                rgba(248, 240, 233, .86) 46%,
                rgba(248, 240, 233, .3) 74%,
                rgba(248, 240, 233, 0) 100%);
    pointer-events: none;
  }
  .hero__title { font-size: 34px; line-height: 42px; }

  /* tratamentos */
  .trat__title { font-size: 40px; line-height: 48px; }
  /* as margens que abrem espaço para o arco dourado são só de desktop */
  .trat__cards { display: flex; gap: 14px; margin-right: 0; }
  .trat-card { height: 132px; border-radius: 20px; }
  .trat-card__photo {
    top: 0; left: auto; right: 0;
    width: 62%; height: 100%;
    object-position: 62% center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 52%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 52%);
  }
  .trat-card__bar { width: 6px; height: 46px; margin-left: 22px; }
  .trat-card__title { margin-left: 16px; max-width: 52%; font-size: 15px !important; line-height: 20px; letter-spacing: 1.4px; }
  .trat-card__arrow { right: 18px; }

  /* pacientes */
  .pac__title { font-size: 52px; line-height: 58px; }
  .pac__sub { font-size: 26px; line-height: 34px; }
  .pac__sub em { font-size: 30px; }
  /* O slide vira display:contents para cada par virar uma coluna do
     trilho — assim o carrossel avança de par em par. */
  .pac__stage { height: auto; }
  .pac__track { gap: 14px; }
  .pac-slide { display: contents; }
  .pac-pair { flex: 0 0 100%; gap: 8px; margin-left: 0; }
  .pac-pair + .pac-pair { margin-left: 0; }
  .pac-card { width: 100%; height: auto; }
  .pac-card img { height: 320px; }
  .pac-card__label { height: 38px; font-size: 12px; letter-spacing: 2px; }
  .pac-pair__badge { top: 50%; width: 44px; height: 44px; }
  .pac-pair__badge svg { width: 20px; }
  .carousel-nav { margin-top: 26px; gap: 16px; }
  .carousel-nav__dots { gap: 14px; }
  .carousel-nav__dots button { width: 11px; height: 11px; }
  .carousel-nav__arrow svg { width: 34px; }

  /* resultados */
  .res__title { font-size: 40px; line-height: 48px; }
  .res__title em { font-size: 46px; }
  .res__stage { height: auto; }
  .res__track { gap: 14px; }
  .res-slide { display: contents; }
  .res-card { flex: 0 0 100%; height: 340px; border-radius: 18px; }
  .res-card__caption { left: 20px; right: 20px; bottom: 20px; }
  .res-card__name { font-size: 20px; }
  .res-card__name span { font-size: 16px; }
  .res-card__tag { font-size: 11px; }
  .play { width: 68px; height: 68px; }
  .play svg { width: 20px; }

  /* quem sou eu */
  .sobre__title { font-size: 62px; line-height: 66px; }
  .sobre__rule { margin: 20px 0; }
  .sobre__lead { font-size: 17px; line-height: 25px; }
  .sobre__sign { font-size: 40px; margin-top: 20px; }
  .sobre__frame { width: auto; height: 460px; border-radius: 34px; padding: 8px; }
  .sobre__media { border-radius: 28px; }
  .sobre__aside { display: none; }

  /* clínica */
  .sec--clinica { background-position: 68% center; }
  .sec--clinica::before {
    background: linear-gradient(180deg, rgba(248,240,233,.96) 0%, rgba(248,240,233,.9) 58%, rgba(248,240,233,.35) 100%);
  }
  .cli__title { font-size: 46px; line-height: 52px; }
  .cli__title em { font-size: 50px; line-height: 58px; margin-left: 0; }

  /* causa */
  .causa__title { font-size: 38px; line-height: 46px; }
  .causa__title em { font-size: 60px; line-height: 66px; margin: -6px 0 0 0; }
  .causa__grid { grid-template-columns: 1fr; row-gap: 26px; margin-right: 0; }
  .feature { padding-left: 58px; }
  .feature__icon { width: 40px; height: 40px; top: 0; }
  .feature__title { margin: 0; font-size: 14px; line-height: 18px; letter-spacing: 1.4px; }
  .feature__text,
  .causa__grid > .feature:nth-child(even) .feature__text { margin-top: 8px; width: auto; font-size: 14px; line-height: 20px; }
  .causa__watermark { display: none; }

  /* blog */
  .blog__title { font-size: 34px; line-height: 42px; }
  .blog__title em { font-size: 40px; line-height: 1; margin-left: 4px; }
  .blog__grid { grid-template-columns: 1fr; gap: 22px; }
  .post__thumb { height: 200px; }
  .post__body { padding: 20px 20px 24px; }
  .post__title { font-size: 22px; line-height: 28px; }
  .post__excerpt { font-size: 14px; line-height: 21px; }
  .post__more { height: 54px; font-size: 14px; }
  .post__more svg { width: 30px; }

  /* rodapé */
  .footer__brand { padding: 70px 0 60px; }
  .footer__brand img { width: 260px; }
  .footer__panel { border-radius: 40px 40px 0 0; padding: 40px 22px 34px; }
  .footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .footer__col h2 { font-size: 20px; }
  .footer__col p, .footer__col a { font-size: 15px; line-height: 21px; }
  .social a { width: 40px; height: 40px; }
  .social svg { width: 20px; height: 20px; }
  .footer__credits { margin-top: 34px; padding-top: 22px; font-size: 13px; line-height: 20px; }
}

@media (max-width: 560px) {
  .hero__title { font-size: 29px; line-height: 36px; }
  .pac__title { font-size: 42px; line-height: 48px; }
  .sobre__title { font-size: 48px; line-height: 52px; }
  .cli__title { font-size: 36px; line-height: 42px; }
  .cli__title em { font-size: 40px; line-height: 46px; }
  .causa__title em { font-size: 48px; line-height: 54px; }
  .sobre__frame { height: 380px; }
  .pac-card img { height: 250px; }
  .res-card { height: 290px; }
}

/* --------------------------------------------------------------------------
   18. Páginas internas — artigo, listagem e avisos do painel
   (usado pelo tema WordPress; no site estático não aparece)
   -------------------------------------------------------------------------- */

.sec--artigo .sec__content { display: block; }

.artigo { max-width: calc(1000 * var(--s)); margin: 0 auto; }
.artigo__topo { text-align: center; }
.artigo__topo .rule { margin-left: auto; margin-right: auto; }
.artigo__titulo { font-size: calc(56 * var(--s)); line-height: calc(66 * var(--s)); }
.artigo__data {
  margin-top: calc(6 * var(--s));
  font-size: calc(15 * var(--s));
  color: rgba(64, 51, 46, .6);
}
.artigo__capa {
  margin: calc(46 * var(--s)) 0;
  border-radius: calc(18 * var(--s));
  overflow: hidden;
  box-shadow: calc(3 * var(--s)) calc(6 * var(--s)) calc(18 * var(--s)) rgba(120, 92, 60, .18);
}
.artigo__capa img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.artigo__corpo { font-size: calc(18 * var(--s)); line-height: calc(30 * var(--s)); }
.artigo__corpo > * + * { margin-top: calc(22 * var(--s)); }
.artigo__corpo h2,
.artigo__corpo h3 {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brown);
  margin-top: calc(40 * var(--s));
}
.artigo__corpo h2 { font-size: calc(36 * var(--s)); line-height: 1.25; }
.artigo__corpo h3 { font-size: calc(28 * var(--s)); line-height: 1.3; }
.artigo__corpo a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.artigo__corpo a:hover { color: var(--brown); }
.artigo__corpo ul, .artigo__corpo ol { padding-left: calc(24 * var(--s)); list-style: revert; }
.artigo__corpo li + li { margin-top: calc(8 * var(--s)); }
.artigo__corpo blockquote {
  padding-left: calc(24 * var(--s));
  border-left: calc(3 * var(--s)) solid var(--gold);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: calc(22 * var(--s));
}
.artigo__corpo img { border-radius: calc(14 * var(--s)); }
.artigo > .btn { display: flex; margin-left: auto; margin-right: auto; margin-top: calc(52 * var(--s)); }

/* paginação das listagens */
.paginacao { margin-top: calc(56 * var(--s)); text-align: center; }
.paginacao .page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: calc(42 * var(--s));
  height: calc(42 * var(--s));
  padding: 0 calc(12 * var(--s));
  margin: 0 calc(4 * var(--s));
  border-radius: calc(21 * var(--s));
  border: 1px solid rgba(186, 150, 110, .45);
  font-family: var(--ff-label);
  font-size: calc(15 * var(--s));
  letter-spacing: calc(1.4 * var(--s));
  color: var(--brown);
  transition: background .25s ease, color .25s ease;
}
.paginacao .page-numbers:hover,
.paginacao .page-numbers.current { background: var(--gold); color: var(--cream-btn); border-color: var(--gold); }

/* aviso que só quem edita o site enxerga */
.aviso-editor {
  padding: calc(28 * var(--s));
  border: 1px dashed rgba(186, 150, 110, .7);
  border-radius: calc(14 * var(--s));
  background: rgba(255, 255, 255, .35);
  font-size: calc(16 * var(--s));
  line-height: calc(24 * var(--s));
  color: var(--brown);
}

/* classes que o editor do WordPress gera */
.alignleft  { float: left;  margin: 0 calc(24 * var(--s)) calc(16 * var(--s)) 0; }
.alignright { float: right; margin: 0 0 calc(16 * var(--s)) calc(24 * var(--s)); }
.aligncenter { margin-left: auto; margin-right: auto; }
.alignwide, .alignfull { max-width: none; }
.wp-caption-text, figcaption {
  margin-top: calc(8 * var(--s));
  font-size: calc(14 * var(--s));
  color: rgba(64, 51, 46, .65);
}
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1023px) {
  .artigo { max-width: none; }
  .artigo__titulo { font-size: 32px; line-height: 40px; }
  .artigo__corpo { font-size: 16px; line-height: 27px; }
  .artigo__corpo h2 { font-size: 26px; }
  .artigo__corpo h3 { font-size: 21px; }
  .artigo__capa { margin: 28px 0; }
  .paginacao .page-numbers { min-width: 38px; height: 38px; font-size: 14px; }
  .aviso-editor { padding: 20px; font-size: 15px; line-height: 22px; }
}

/* --------------------------------------------------------------------------
   19. Blog — ação abaixo da grade e variação com dois cards
   -------------------------------------------------------------------------- */

.blog__acao { margin-top: calc(56 * var(--s)); display: flex; justify-content: center; }
.blog__acao .btn { margin-top: 0; }

/* "Leia também" nas páginas de matéria mostra dois cards centralizados */
.blog__grid--duas {
  grid-template-columns: repeat(2, calc(526 * var(--s)));
  justify-content: center;
}

@media (max-width: 1023px) {
  .blog__acao { margin-top: 30px; }
  .blog__grid--duas { grid-template-columns: 1fr; }
}
