/* =========================================================
   Vitoria Demarque Medeiros — Landing Page
   Identidade: #F1E3D5 · #C6A892 · #4D2828 · #3F2F35
   Tipografia: Hastegi (display) + Montserrat (texto)
   Medidas em px/rem — sem clamp() e sem em
   ========================================================= */

/* Hastegi é uma fonte licenciada e não está no Google Fonts.
   Coloque os arquivos em assets/fonts/ e o site passa a usá-la
   automaticamente; sem eles, o fallback é Prata (mesmo espírito
   serifado de alto contraste). */
@font-face {
  font-family: "Hastegi";
  src:
    url("../fonts/Hastegi.woff2") format("woff2"),
    url("../fonts/Hastegi.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Cores da marca */
  --cream: #fbf7f3;
  --sand: #f1e3d5;
  --sand-deep: #e9d6c6;
  --header-bg: #e4d4c7; /* fundo do header (pílula e menu mobile) */
  --nude: #c6a892;
  --wine: #4d2828;
  --ink: #3f2f35;
  --clay: #b4744c; /* acento quente derivado da paleta (CTA) */
  --clay-dark: #9c6140;
  --plum: #392d31; /* fundo escuro */

  /* Tipografia */
  --font-display: "Hastegi", "Prata", Georgia, "Times New Roman", serif;
  --font-body:
    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --wrap: 1320px;
  --gutter: 32px;
  --radius-panel: 34px;
  --panel-pad-y: 68px;
  --panel-pad-x: 64px;
  --header-h: 92px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
}
p {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.15px;
  line-height: 1;
  padding: 16px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s ease;
}
.btn--primary {
  background: var(--clay);
  color: #fff8f2;
}
.btn--primary:hover {
  background: var(--clay-dark);
}
/* contorno: mesmo tamanho do .btn--primary (a borda entra no box-sizing) */
.btn--outline {
  background: transparent;
  color: var(--clay);
  box-shadow: inset 0 0 0 1.5px var(--clay);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--clay);
  color: #fff8f2;
  box-shadow: inset 0 0 0 1.5px var(--clay);
}

.btn--lg {
  font-size: 16px;
  padding: 19px 34px;
}

.ico-wa {
  width: 20px;
  height: 20px;
  flex: none;
  fill: currentColor;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: var(--gutter) var(--gutter) 0;
}
.header-pill {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  min-height: 76px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--header-bg);
  border-radius: 999px;
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}
/* Ao rolar (header fixo) ou com o menu aberto, o header passa a ficar
   acima da foto do hero (z-index: 60). */
.site-header.is-stuck,
.site-header:has(.nav.is-open) {
  z-index: 70;
}
.site-header.is-stuck .header-pill {
  background: rgba(228, 212, 199, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px -28px rgba(63, 47, 53, 0.55);
}

/* --- Marca --- */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 16px;
  flex: none;
}
.brand__mark {
  width: auto;
  height: 40px;
}
.brand__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1;
  color: var(--wine);
}
.brand__role {
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.78;
}

/* --- Navegação --- */
.nav {
  display: flex;
  align-items: center;
  gap: 44px;
  margin: 0 auto;
}
.nav a {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  color: var(--wine);
  padding: 4px 0;
  transition: opacity 0.2s ease;
}
.nav a:hover {
  opacity: 0.65;
}
.header__cta {
  flex: none;
}

/* --- Botão hambúrguer --- */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--wine);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 22px var(--gutter) var(--gutter);
}

.hero__panel {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  min-height: min(74vh, 660px);
  padding: var(--panel-pad-y) var(--panel-pad-x) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: center;
  gap: 32px;
  /* visível para a foto "vazar" pelo topo do painel */
  overflow: visible;
  border-radius: var(--radius-panel);
  background: radial-gradient(
    120% 130% at 12% 0%,
    #f6e7da 0%,
    var(--sand) 46%,
    #ebdaca 100%
  );
}

/* --- Decoração --- */
/* Marca d'água grande, cortada no canto superior direito do painel.
   Como background, ela é recortada pelo border-radius do painel mesmo
   com overflow: visible (necessário para a foto vazar pelo topo). */
.hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: url("../img/watermark.webp") no-repeat;
  background-position: right -180px top 0px;
  background-size: 890px auto;
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
}
/* --- Conteúdo --- */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-bottom: var(--panel-pad-y);
}

.hero__badge {
  display: inline-block;
  margin-bottom: 32px;
  padding: 11px 22px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--nude);
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1;
  color: var(--wine);
}

.hero__title {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1.09;
  letter-spacing: -0.3px;
  color: var(--wine);
  text-wrap: pretty;
}
.hero__headline {
  display: block;
}

/* palavras-chave em destaque */
.hl {
  font-weight: 700;
  color: var(--clay);
}

.hero__text {
  margin-top: 30px;
  max-width: 560px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--wine);
}

.hero__actions {
  margin-top: 44px;
}

/* --- Foto --- */
.hero__figure {
  position: absolute;
  /* acima do header sticky (z-index: 50) */
  z-index: 60;
  /* centralizada na coluna livre ao lado do texto: o centro da coluna
     de 0.8fr fica a (20% do painel + 32px) da borda direita */
  right: calc(20% + 32px);
  transform: translateX(50%);
  bottom: 0;
  top: auto;
  /* ultrapassa o topo do painel em px fixos, sempre menores que o
     respiro de 22px entre o header e o painel — assim a cabeça nunca
     encosta no header */
  height: calc(100% + 18px);
  max-height: 740px;
}
.hero__photo {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 60px rgba(63, 47, 53, 0.18));
}

/* =========================================================
   PARA QUEM É
   ========================================================= */
.audience {
  padding: 110px var(--gutter) 100px;
}
.audience__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 72px;
}

/* --- Coluna esquerda --- */
.audience__intro {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  padding-left: 42px;
  position: relative;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--nude);
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--nude);
}

.audience__title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: -0.2px;
  color: var(--wine);
  text-wrap: pretty;
}

.audience__text {
  margin-top: 26px;
  max-width: 480px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--wine);
  opacity: 0.85;
}

.audience__actions {
  margin-top: 38px;
}

/* --- Lista de dores --- */
.pains {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.pain {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: 26px 30px;
  border-radius: var(--radius-panel);
  background: var(--sand);
}

/* O círculo acompanha a altura do item (align-items: stretch) e o
   font-size do ícone é derivado dessa altura via container queries. */
.pain__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  container-type: size;
  width: 84px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--clay);
  color: var(--clay);
  line-height: 1;
}
.pain__icon i {
  font-size: 42px;
}
@supports (font-size: 100cqh) {
  .pain__icon {
    width: auto;
    min-width: 58px;
  }
  .pain__icon i {
    font-size: 52cqh;
  }
}

.pain__title {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.25;
  color: var(--wine);
}
.pain__text {
  margin-top: 12px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.68;
  color: var(--ink);
  opacity: 0.82;
}

/* =========================================================
   COMO FUNCIONA
   ========================================================= */
.method {
  /* o respiro extra no topo acomoda a cabeça que vaza do painel */
  padding: 20px var(--gutter) 110px;
}
.method__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 72px;
}

/* --- Coluna esquerda: painel com a foto --- */
.method__figure {
  /* reserva o espaço do transbordo da foto acima do painel */
  padding-top: 78px;
}
.method__panel {
  position: relative;
  height: 540px;
  /* visível para a foto "vazar" pelo topo do painel */
  overflow: visible;
  border-radius: var(--radius-panel);
  background: radial-gradient(
    120% 130% at 12% 0%,
    #f6e7da 0%,
    var(--sand) 46%,
    #ebdaca 100%
  );
}
/* marca d'água recortada pelo raio do painel, como no hero */
.method__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: url("../img/watermark.webp") no-repeat;
  background-position: left -140px bottom 0px;
  background-size: 750px auto;
  opacity: 0.1;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.method__photo {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: calc(100% + 78px);
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 60px rgba(63, 47, 53, 0.18));
}

/* --- Coluna direita: texto --- */
.method__title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: -0.2px;
  color: var(--wine);
  text-wrap: pretty;
}
.method__text {
  margin-top: 26px;
  max-width: 560px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--wine);
  opacity: 0.85;
}
.method__actions {
  margin-top: 38px;
}

/* =========================================================
   DEPOIMENTOS
   ========================================================= */
/* boxed: painel com cantos arredondados, como o hero e a CTA */
.praise {
  padding: 24px var(--gutter) 42px;
}

/* sprite dos ícones — fora do fluxo */
.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.praise__wrap {
  position: relative;
  isolation: isolate;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: var(--panel-pad-y) var(--panel-pad-x);
  border-radius: var(--radius-panel);
  background: #e4d4c7;
}

.praise__head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.praise__head .eyebrow {
  padding-left: 0;
  padding-inline: 42px;
}
.praise__head .eyebrow::before {
  left: 0;
}
.praise__head .eyebrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--nude);
}

.praise__title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: -0.2px;
  color: var(--wine);
  text-wrap: pretty;
}
.praise__title .hl {
  color: var(--clay);
}

/* --- Cards --- */
/* mosaico estilo Pinterest: colunas CSS deixam cada card com a altura do
   próprio texto, e as colunas se preenchem em cascata */
.praise__list {
  margin-top: 58px;
  columns: 3;
  column-gap: 22px;
}

.quote {
  /* o card não pode ser fatiado entre duas colunas */
  break-inside: avoid;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
  padding: 34px 32px;
  border-radius: var(--radius-panel);
  /* o painel agora é claro: o card sobe para o off-white e continua se
     destacando do fundo */
  background: #fff8f2;
}

.quote__stars {
  display: flex;
  gap: 5px;
}
.quote__stars svg {
  width: 19px;
  height: 19px;
  flex: none;
  fill: var(--clay);
}

.quote__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.86;
  text-wrap: pretty;
}

.praise__actions {
  /* 52px de respiro, menos o margin-bottom do último card de cada coluna */
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.praise__actions .ph-arrow-up-right {
  font-size: 18px;
  line-height: 1;
}

/* =========================================================
   SOBRE MIM
   ========================================================= */
.about {
  /* o respiro extra no topo acomoda a cabeça que vaza do painel */
  padding: 40px var(--gutter) 110px;
}
.about__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 72px;
}

/* --- Coluna esquerda: texto --- */
.about__title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: -0.2px;
  color: var(--wine);
  text-wrap: pretty;
}
.about__text {
  margin-top: 26px;
  max-width: 560px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--wine);
  opacity: 0.85;
}

.about__actions {
  margin-top: 38px;
}

/* --- Coluna direita: painel com a foto --- */
.about__figure {
  /* reserva o espaço do transbordo da foto acima do painel */
  padding-top: 78px;
  /* o painel acompanha a altura da coluna de texto */
  align-self: stretch;
  display: flex;
}
.about__panel {
  position: relative;
  flex: 1;
  height: auto;
  min-height: 540px;
  /* visível para a foto "vazar" pelo topo do painel */
  overflow: visible;
  border-radius: var(--radius-panel);
  background: radial-gradient(
    120% 130% at 88% 0%,
    #f6e7da 0%,
    var(--sand) 46%,
    #ebdaca 100%
  );
}
/* marca d'água recortada pelo raio do painel, como no hero */
.about__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: url("../img/watermark.webp") no-repeat;
  background-position: right -140px bottom 0px;
  background-size: 750px auto;
  opacity: 0.1;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.about__photo {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: calc(100% + 78px);
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 60px rgba(63, 47, 53, 0.18));
}

/* =========================================================
   BLOG
   ========================================================= */
section.blog {
  padding: 20px var(--gutter) 110px;
}
.blog__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
}

.blog__head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
/* traço dos dois lados, como na seção de depoimentos */
.blog__head .eyebrow {
  padding-left: 0;
  padding-inline: 42px;
}
.blog__head .eyebrow::before {
  left: 0;
}
.blog__head .eyebrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--nude);
}

.blog__title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: -0.2px;
  color: var(--wine);
  text-wrap: pretty;
}

/* --- Cards --- */
.blog__list {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}
li.post {
  min-width: 0;
}

.post__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 34px 32px;
  border-radius: var(--radius-panel);
  background: transparent;
  border: 1px solid rgba(198, 168, 146, 0.6);
  transition:
    border-color 0.35s ease,
    background 0.35s ease;
}
.post__card:hover {
  border-color: var(--nude);
  background: rgba(241, 227, 213, 0.35);
}

.post__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--nude);
}
.post__tag {
  color: var(--clay);
}
.post__dot {
  width: 4px;
  height: 4px;
  flex: none;
  border-radius: 50%;
  background: var(--nude);
}
.post__date {
  font-weight: 500;
  letter-spacing: 1.2px;
}

.post__title {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.28;
  color: var(--wine);
  text-wrap: pretty;
}

/* o resumo é cortado em 3 linhas, mantendo os cards no mesmo ritmo
   mesmo que o texto do post seja mais longo */
.post__text {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.86;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

/* o link fica colado na base, alinhando os cards da linha */
.post__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 26px;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--clay);
  transition: color 0.25s ease;
}
.post__link i {
  font-size: 17px;
  line-height: 1;
  transition: transform 0.25s ease;
}
.post__link:hover {
  color: var(--clay-dark);
}
.post__link:hover i {
  transform: translateX(4px);
}

.blog__actions {
  margin-top: 52px;
  display: flex;
  justify-content: center;
}
.blog__actions .ph-arrow-right {
  font-size: 18px;
  line-height: 1;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 20px var(--gutter) 110px;
}
.faq__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 72px;
}

/* --- Coluna esquerda --- */
.faq__intro {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}
.faq__title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: -0.2px;
  color: var(--wine);
  text-wrap: pretty;
}
/* --- Coluna direita: acordeão --- */
.faq__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

/* outlined com o mesmo contorno e o mesmo hover dos cards do blog */
.faq__item {
  border-radius: var(--radius-panel);
  background: transparent;
  border: 1.5px solid rgba(198, 168, 146, 0.6);
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    background 0.35s ease;
}
.faq__item:hover {
  border-color: var(--nude);
  background: rgba(241, 227, 213, 0.35);
}

.faq__q {
  margin: 0;
  font-weight: 400;
}
.faq__btn {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 26px 30px;
  border: 0;
  background: none;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.3;
  text-align: left;
  color: var(--wine);
  cursor: pointer;
}
.faq__label {
  flex: 1;
  text-wrap: pretty;
}

/* sinal de + / − desenhado em CSS, em círculo outline */
.faq__sign {
  position: relative;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--clay);
  background: none;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease;
}
.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--clay);
  transform: translate(-50%, -50%);
  transition:
    transform 0.3s cubic-bezier(0.22, 0.8, 0.3, 1),
    background-color 0.25s ease;
}
.faq__sign::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__item.is-open .faq__sign::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__btn:hover .faq__sign {
  border-color: var(--clay-dark);
  background: rgba(180, 116, 76, 0.08);
}
.faq__btn:hover .faq__sign::before,
.faq__btn:hover .faq__sign::after {
  background: var(--clay-dark);
}

/* o painel abre/fecha animando a linha do grid de 0fr para 1fr */
.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.faq__item.is-open .faq__panel {
  grid-template-rows: 1fr;
}
.faq__panel-inner {
  overflow: hidden;
}
.faq__text {
  padding: 0 30px 28px;
  max-width: 620px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.68;
  color: var(--ink);
  opacity: 0.82;
  text-wrap: pretty;
}

/* =========================================================
   INSTAGRAM
   ========================================================= */
.ig {
  padding: 0 var(--gutter) 110px;
}
.ig__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
}

.ig__head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
/* traço dos dois lados, como na seção de depoimentos */
.ig__head .eyebrow {
  padding-left: 0;
  padding-inline: 42px;
  text-transform: none;
  letter-spacing: 1.4px;
}
.ig__head .eyebrow::before {
  left: 0;
}
.ig__head .eyebrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--nude);
}

.ig__title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: -0.2px;
  color: var(--wine);
  text-wrap: pretty;
}

/* --- Posts --- */
.ig__list {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.ig__item {
  min-width: 0;
}

.ig__post {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-panel);
  background: var(--sand);
}
.ig__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* selo fixo sobre a imagem, sinalizando que o card leva ao post */
.ig__badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(251, 247, 243, 0.92);
  color: var(--wine);
  font-size: 22px;
  pointer-events: none;
}

.ig__actions {
  margin-top: 52px;
  display: flex;
  justify-content: center;
}
.ig__actions .ph-instagram-logo {
  font-size: 20px;
  line-height: 1;
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta {
  padding: 0 var(--gutter);
}

.cta__panel {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  min-height: min(62vh, 560px);
  padding: var(--panel-pad-y) var(--panel-pad-x) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 72px;
  /* visível para a foto "vazar" pelo topo do painel, como no hero */
  overflow: visible;
  border-radius: var(--radius-panel);
  background: radial-gradient(
    120% 130% at 88% 0%,
    #f6e7da 0%,
    var(--sand) 46%,
    #ebdaca 100%
  );
}

/* marca d'água espelhada em relação à do hero (canto superior esquerdo) */
.cta__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: url("../img/watermark.webp") no-repeat;
  background-position: left -180px top 0px;
  background-size: 890px auto;
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* --- Foto (esquerda) --- */
.cta__figure {
  position: absolute;
  z-index: 2;
  /* centralizada na coluna de 0.8fr: (20% do painel + gap/2) da borda esq. */
  left: calc(20% + 32px);
  transform: translateX(-50%);
  bottom: 0;
  top: auto;
  height: calc(100% + 26px);
  max-height: 640px;
}
/* a foto é centrada com translateX(-50%): o reveal precisa preservá-lo,
   senão .sr/.sr.is-in sobrescrevem o transform e a imagem desalinha */
.cta__figure.sr {
  transform: translateX(-50%) translateY(22px);
}
.cta__figure.sr.is-in {
  transform: translateX(-50%);
}

.cta__photo {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 60px rgba(63, 47, 53, 0.18));
}

/* --- Conteúdo (direita) --- */
.cta__content {
  position: relative;
  z-index: 3;
  grid-column: 2;
  max-width: 640px;
  /* respiro extra entre a foto e o texto, além do gap do grid */
  margin-left: 28px;
  padding-bottom: var(--panel-pad-y);
}

.cta__title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: -0.2px;
  color: var(--wine);
  text-wrap: pretty;
}

.cta__text {
  margin-top: 26px;
  max-width: 560px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--wine);
}

.cta__actions {
  margin-top: 40px;
}

/* =========================================================
   CRÉDITOS (rodapé)
   ========================================================= */
.credits {
  display: grid;
  place-items: center;
  /* mesma altura do antigo padding-bottom da CTA: o texto fica
     centralizado verticalmente nesse espaço em branco */
  min-height: 110px;
  padding: 0 var(--gutter);
  text-align: center;
}

.credits__text {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.2px;
  color: var(--ink);
  opacity: 0.72;
}

.credits__link {
  color: var(--clay);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 116, 76, 0.4);
  padding-bottom: 1px;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.credits__link:hover,
.credits__link:focus-visible {
  color: var(--clay-dark);
  border-color: currentColor;
}

/* =========================================================
   PÁGINAS INTERNAS — CABEÇALHO (blog.html / single.html)
   ========================================================= */
.pagehero {
  padding: 22px var(--gutter) 0;
}

.pagehero__panel {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: var(--panel-pad-y) var(--panel-pad-x);
  overflow: hidden;
  border-radius: var(--radius-panel);
  background: radial-gradient(
    120% 130% at 12% 0%,
    #f6e7da 0%,
    var(--sand) 46%,
    #ebdaca 100%
  );
}
/* mesma marca d'água do hero da home */
.pagehero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: url("../img/watermark.webp") no-repeat;
  background-position: right -180px top 0px;
  background-size: 890px auto;
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* variação sólida, sem marca d'água (blog.html) */
.pagehero__panel--solid {
  background: #f4e5d8;
}
/* sem marca d'água */
.pagehero__panel.pagehero__panel--solid::before {
  display: none;
}

/* selo arredondado (outlined), igual ao badge do hero da home */
.pagehero__badge {
  display: inline-block;
  margin-bottom: 32px;
  padding: 11px 22px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--nude);
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1;
  color: var(--wine);
}

.pagehero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
/* traço dos dois lados, como nas seções centralizadas da home */
.pagehero__content .eyebrow {
  padding-left: 0;
  padding-inline: 42px;
}
.pagehero__content .eyebrow::before {
  left: 0;
}
.pagehero__content .eyebrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--nude);
}

.pagehero__title {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--wine);
  text-wrap: pretty;
}
.pagehero__text {
  margin: 26px auto 0;
  max-width: 620px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--wine);
  opacity: 0.85;
}

/* assinatura + data no cabeçalho do post */
.post__meta--center {
  justify-content: center;
  margin-top: 30px;
}

/* --- Trilha de navegação --- */
.crumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--nude);
}
.crumbs a {
  color: var(--nude);
  transition: color 0.25s ease;
}
.crumbs a:hover {
  color: var(--clay);
}
.crumbs__sep {
  font-size: 14px;
  line-height: 1;
  opacity: 0.7;
}
.crumbs__current {
  color: var(--clay);
  max-width: 420px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =========================================================
   BLOG — LISTAGEM (blog.html)
   ========================================================= */
section.archive {
  padding: 40px var(--gutter) 110px;
}
.archive__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
}

/* --- Filtros por categoria --- */
.archive__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.chip {
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--sand);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.6px;
  color: var(--wine);
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}
.chip:hover {
  background: var(--sand-deep);
}
.chip.is-active {
  background: var(--clay);
  color: #fff8f2;
}

/* --- Grade de posts --- */
.archive__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}
/* item filtrado: sai do fluxo sem quebrar a grade */
.post[hidden] {
  display: none;
}

/* card com imagem — variação usada na listagem */
.post__card--media {
  padding: 0;
  overflow: hidden;
}
.post__thumb {
  display: block;
  overflow: hidden;
  background: var(--sand-deep);
}
.post__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.post__card--media:hover .post__img {
  transform: scale(1.04);
}
.post__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px 32px 34px;
}

/* aviso de "nenhum post nesta categoria" */
.archive__empty {
  margin-top: 40px;
  padding: 44px 30px;
  border-radius: var(--radius-panel);
  background: var(--sand);
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  color: var(--wine);
  opacity: 0.85;
}
.archive__empty[hidden] {
  display: none;
}

/* --- Paginação --- */
.pager {
  margin-top: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pager__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 14px;
  font-weight: 500;
  color: var(--wine);
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}
.pager__item:hover {
  background: var(--sand-deep);
}
.pager__item.is-current {
  background: var(--clay);
  color: #fff8f2;
}
.pager__item i {
  font-size: 18px;
  line-height: 1;
}
.pager__item[aria-disabled="true"] {
  opacity: 0.4;
  pointer-events: none;
}

/* =========================================================
   BLOG — POST (single.html)
   ========================================================= */
.article {
  padding: 58px var(--gutter) 110px;
}
.article__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-items: start;
  gap: 72px;
}

/* --- Capa --- */
.article__cover {
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: var(--radius-panel);
  background: var(--sand);
}
.article__cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

/* --- Texto do post --- */
.prose {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink);
  text-wrap: pretty;
}
.prose > * + * {
  margin-top: 26px;
}
.prose h2 {
  margin-top: 52px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.22;
  color: var(--wine);
}
.prose h3 {
  margin-top: 42px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.28;
  color: var(--wine);
}
.prose strong {
  font-weight: 600;
  color: var(--wine);
}
.prose a {
  color: var(--clay);
  border-bottom: 1px solid rgba(180, 116, 76, 0.4);
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}
.prose a:hover {
  color: var(--clay-dark);
  border-color: currentColor;
}
.prose ul {
  display: grid;
  gap: 12px;
  padding-left: 4px;
}
.prose ul li {
  position: relative;
  padding-left: 26px;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
}
.prose blockquote {
  margin: 42px 0;
  padding: 32px 34px;
  border-radius: var(--radius-panel);
  background: var(--sand);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--wine);
}
.prose blockquote p {
  margin: 0;
}
.prose figure {
  margin: 42px 0;
}
.prose figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-panel);
}
.prose figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink);
  opacity: 0.7;
}

/* --- Rodapé do post --- */
.article__foot {
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid rgba(198, 168, 146, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
a.tag {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: var(--wine);
  transition: background-color 0.25s ease;
}
a.tag:hover {
  background: var(--sand-deep);
}

.share {
  display: flex;
  align-items: center;
  gap: 10px;
}
.share__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nude);
}
.share__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--clay);
  color: var(--clay);
  font-size: 19px;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}
.share__link:hover {
  background: var(--clay);
  color: #fff8f2;
}

/* --- Coluna lateral --- */
.article__aside {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  display: grid;
  gap: 22px;
}
.aside-card {
  padding: 30px 28px;
  border-radius: var(--radius-panel);
  background: var(--sand);
}
.aside-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.25;
  color: var(--wine);
}

/* autora */
.aside-card--author {
  text-align: center;
}
.aside-card__photo {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  background: var(--sand-deep);
}
.aside-card__role {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nude);
}
.aside-card__text {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.85;
}
.aside-card__actions {
  margin-top: 22px;
}
.aside-card__actions .btn {
  width: 100%;
  justify-content: center;
}

/* sumário */
.toc {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  counter-reset: toc;
}
.toc a {
  position: relative;
  display: block;
  padding-left: 30px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.86;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}
.toc a::before {
  counter-increment: toc;
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--clay);
}
.toc a:hover {
  color: var(--clay);
  opacity: 1;
}

/* =========================================================
   POSTS RELACIONADOS
   ========================================================= */
.related {
  padding: 0 var(--gutter) 110px;
}
.related__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
}
.related__head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.related__head .eyebrow {
  padding-left: 0;
  padding-inline: 42px;
}
.related__head .eyebrow::before {
  left: 0;
}
.related__head .eyebrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--nude);
}
.related__title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: -0.2px;
  color: var(--wine);
  text-wrap: pretty;
}
.related__list {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

/* =========================================================
   RESPONSIVO — PÁGINAS INTERNAS
   ========================================================= */
@media (max-width: 1180px) {
  .pagehero__panel::before {
    background-position: right -160px top -160px;
    background-size: 650px auto;
    opacity: 0.16;
  }
  .pagehero__title {
    font-size: 40px;
  }
  .pagehero__text {
    font-size: 16px;
  }

  section.archive {
    padding: 58px var(--gutter) 90px;
  }
  .archive__list {
    margin-top: 34px;
    gap: 18px;
  }
  .post__body {
    padding: 26px 26px 30px;
  }

  .article {
    padding-bottom: 90px;
  }
  .article__wrap {
    gap: 48px;
  }
  .prose {
    font-size: 16px;
  }
  .prose h2 {
    font-size: 26px;
  }
  .prose blockquote {
    font-size: 20px;
  }

  .related {
    padding-bottom: 90px;
  }
  .related__title {
    font-size: 36px;
  }
  .related__list {
    margin-top: 46px;
    gap: 18px;
  }
}

@media (max-width: 1024px) {
  .pagehero__title {
    font-size: 34px;
  }
  .pagehero__panel::before {
    background-position: right -125px top -125px;
    background-size: 500px auto;
    opacity: 0.1;
  }

  .archive__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article__wrap {
    gap: 44px;
  }

  .related__title {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .pagehero__badge {
    font-size: 12px;
    padding: 10px 16px;
    margin-bottom: 24px;
  }
  .pagehero__title {
    font-size: 28px;
  }
  .pagehero__text {
    font-size: 15px;
    line-height: 1.7;
  }
  .crumbs {
    font-size: 11px;
    gap: 8px;
  }
  .crumbs__current {
    max-width: 190px;
  }

  section.archive {
    padding: 44px var(--gutter) 60px;
  }
  .archive__filters {
    gap: 8px;
  }
  .chip {
    padding: 11px 18px;
    font-size: 12px;
  }
  .archive__list {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
    margin-top: 30px;
    margin-inline: auto;
    gap: 14px;
  }
  .post__body {
    padding: 24px 22px 28px;
  }
  .pager {
    margin-top: 40px;
  }

  .article {
    padding: 40px var(--gutter) 60px;
  }
  .article__cover img {
    aspect-ratio: 4 / 3;
  }
  .prose {
    font-size: 15px;
    line-height: 1.8;
  }
  .prose h2 {
    margin-top: 40px;
    font-size: 23px;
  }
  .prose h3 {
    font-size: 19px;
  }
  .prose blockquote {
    margin: 32px 0;
    padding: 26px 22px;
    font-size: 18px;
  }
  .article__foot {
    margin-top: 40px;
  }
  .related {
    padding-bottom: 60px;
  }
  .related__title {
    font-size: 28px;
  }
  .related__list {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
    margin-top: 34px;
    margin-inline: auto;
    gap: 14px;
  }
}

/* =========================================================
   ANIMAÇÃO DE ENTRADA
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s cubic-bezier(0.22, 0.8, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}
.reveal.d1 {
  --d: 0.08s;
}
.reveal.d2 {
  --d: 0.16s;
}
.reveal.d3 {
  --d: 0.24s;
}

/* Reveal ao entrar na viewport (seções abaixo do hero) */
.sr {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.8, 0.3, 1) var(--d, 0s),
    transform 0.8s cubic-bezier(0.22, 0.8, 0.3, 1) var(--d, 0s);
}
.sr.is-in {
  opacity: 1;
  transform: none;
}
.sr.d1 {
  --d: 0.08s;
}
.sr.d2 {
  --d: 0.16s;
}
.sr.d3 {
  --d: 0.24s;
}
.sr.d4 {
  --d: 0.32s;
}
.sr.d5 {
  --d: 0.4s;
}

.hero__figure {
  animation: fade 1.1s ease 0.1s both;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    transition-duration: 0.001ms !important;
  }
  .reveal,
  .sr {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

/* Notebooks menores */
@media (max-width: 1180px) {
  :root {
    --gutter: 26px;
    --radius-panel: 30px;
    --panel-pad-y: 56px;
    --panel-pad-x: 44px;
  }

  .nav {
    gap: 22px;
  }
  .nav a {
    font-size: 12px;
  }
  .brand__name {
    font-size: 17px;
  }

  .hero__panel::before {
    background-position: right -160px top -160px;
    background-size: 650px auto;
    opacity: 0.16;
  }
  .hero__title {
    font-size: 46px;
  }
  .hero__text {
    margin-top: 24px;
    font-size: 16px;
  }
  .hero__actions {
    margin-top: 34px;
  }
  .hero__figure {
    right: calc(20% + 22px);
  }

  .audience {
    padding: 90px var(--gutter) 80px;
  }
  .audience__wrap {
    gap: 48px;
  }
  .audience__title {
    font-size: 36px;
  }
  .audience__text {
    font-size: 16px;
  }
  .pain {
    gap: 18px;
    padding: 24px;
  }
  .pain__title {
    font-size: 18px;
  }

  section.blog {
    padding-bottom: 90px;
  }
  .blog__title {
    font-size: 36px;
  }
  .blog__list {
    margin-top: 46px;
    gap: 18px;
  }
  .post__card {
    padding: 28px 26px;
  }
  .post__title {
    font-size: 20px;
  }

  .faq {
    padding-bottom: 90px;
  }
  .faq__wrap {
    gap: 48px;
  }
  .faq__title {
    font-size: 36px;
  }
  .faq__btn {
    gap: 18px;
    padding: 24px;
    font-size: 17px;
  }
  .faq__text {
    padding: 0 24px 24px;
    font-size: 16px;
  }

  .ig {
    padding-bottom: 90px;
  }
  .ig__title {
    font-size: 36px;
  }
  .ig__list {
    margin-top: 46px;
    gap: 18px;
  }

  .credits {
    min-height: 90px;
  }
  .cta__panel {
    gap: 52px;
  }
  .cta__content {
    margin-left: 16px;
  }
  .cta__panel::before {
    background-position: left -160px top -160px;
    background-size: 650px auto;
    opacity: 0.16;
  }
  .cta__title {
    font-size: 36px;
  }
  .cta__text {
    margin-top: 22px;
    font-size: 16px;
  }
  .cta__actions {
    margin-top: 32px;
  }
  .cta__figure {
    left: calc(20% + 22px);
  }

  .method {
    padding-bottom: 90px;
  }
  .method__wrap {
    gap: 48px;
  }
  .method__panel {
    height: 470px;
  }
  .method__title {
    font-size: 36px;
  }
  .method__text {
    font-size: 16px;
  }

  .about {
    padding-bottom: 90px;
  }
  .about__wrap {
    gap: 48px;
  }
  .about__panel {
    min-height: 470px;
  }
  .about__title {
    font-size: 36px;
  }
  .about__text {
    font-size: 16px;
  }

  .praise {
    padding: 20px var(--gutter) 34px;
  }
  .praise__title {
    font-size: 36px;
  }
  .praise__list {
    margin-top: 46px;
    column-gap: 18px;
  }
  .quote {
    margin-bottom: 18px;
    padding: 28px 26px;
  }
}

/* Tablet — nav vira menu */
@media (max-width: 1024px) {
  :root {
    --gutter: 22px;
    --radius-panel: 26px;
    --panel-pad-y: 48px;
    --panel-pad-x: 32px;
  }

  .nav-toggle {
    display: flex;
  }
  .header__cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 26px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--header-bg);
    border-radius: 26px;
    box-shadow: 0 26px 50px -26px rgba(63, 47, 53, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav a {
    font-size: 16px;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(77, 40, 40, 0.12);
  }
  /* o último item do menu não leva risco embaixo */
  .nav a:last-child {
    border-bottom: 0;
  }

  .hero__panel {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }
  .hero__content {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 40px;
  }
  .hero__title {
    margin-inline: auto;
    font-size: 42px;
  }
  .hero__text {
    margin-inline: auto;
  }
  .hero__figure {
    position: static;
    transform: none;
    height: auto;
    max-height: none;
    display: flex;
    justify-content: center;
  }
  .hero__photo {
    height: auto;
    max-height: min(52vh, 460px);
  }
  .hero__panel::before {
    background-position: right -125px top -125px;
    background-size: 500px auto;
    opacity: 0.1;
  }

  .audience__wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .audience__intro {
    position: static;
    text-align: center;
  }
  .audience__title {
    font-size: 34px;
  }
  .audience__text {
    margin-inline: auto;
  }
  /* empilhado: o botão é movido (main.js) para depois dos cards */
  .audience__wrap > .audience__actions {
    margin-top: 0;
    display: flex;
    justify-content: center;
  }

  .method__wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .method__content {
    text-align: center;
  }
  .method__title {
    font-size: 34px;
  }
  .method__text {
    margin-inline: auto;
  }
  .method__panel {
    height: min(58vh, 460px);
  }

  .about__wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  /* empilhado: a foto vem primeiro, como na seção "como funciona" */
  .about__figure {
    order: -1;
  }
  .about__content {
    text-align: center;
  }
  .about__title {
    font-size: 34px;
  }
  .about__text {
    margin-inline: auto;
  }
  .about__panel {
    height: min(58vh, 460px);
    min-height: 0;
  }

  /* com três posts, manter as 3 colunas evita um card órfão na linha */
  .blog__title {
    font-size: 34px;
  }
  .post__card {
    padding: 26px 22px;
  }
  .post__title {
    font-size: 19px;
  }
  .post__text {
    font-size: 15px;
  }

  .faq__wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .faq__intro {
    position: static;
    text-align: center;
  }
  .faq__title {
    font-size: 34px;
  }

  .praise__title {
    font-size: 34px;
  }
  .praise__list {
    columns: 2;
  }

  .ig__title {
    font-size: 34px;
  }
  .ig__badge {
    right: 14px;
    bottom: 14px;
    width: 38px;
    height: 38px;
    font-size: 19px;
  }

  .cta__panel {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
    min-height: 0;
  }
  /* empilhado: a foto vem primeiro, depois o texto */
  .cta__figure {
    position: static;
    order: -1;
    height: auto;
    max-height: none;
    display: flex;
    justify-content: center;
  }
  .cta__figure.sr {
    transform: translateY(22px);
  }
  .cta__figure.sr.is-in {
    transform: none;
  }
  .cta__photo {
    height: auto;
    max-height: min(52vh, 440px);
  }
  .cta__content {
    grid-column: auto;
    max-width: 720px;
    margin: 0 auto;
    padding-top: 34px;
    padding-bottom: 40px;
  }
  .cta__title {
    margin-inline: auto;
    font-size: 34px;
  }
  .cta__text {
    margin-inline: auto;
  }
  .cta__panel::before {
    background-position: left -125px top -125px;
    background-size: 500px auto;
    opacity: 0.1;
  }
}

/* Celular */
@media (max-width: 640px) {
  :root {
    --gutter: 14px;
    --panel-pad-x: 22px;
  }

  /* sem os traços decorativos ao redor dos rótulos */
  .eyebrow::before,
  .eyebrow::after {
    display: none;
  }
  .eyebrow,
  .praise__head .eyebrow,
  .blog__head .eyebrow,
  .ig__head .eyebrow,
  .related__head .eyebrow,
  .pagehero__content .eyebrow {
    padding-left: 0;
    padding-inline: 0;
  }

  .header-pill {
    min-height: 68px;
    gap: 10px;
    padding-inline: 14px;
  }
  .brand__mark {
    height: 34px;
  }
  .brand__name {
    font-size: 15px;
  }
  .brand__role {
    font-size: 8px;
    letter-spacing: 1.7px;
  }

  .hero__panel {
    min-height: 0;
  }
  /* marca d'água grande, centralizada e ancorada na base do painel */
  .hero__panel::before {
    background-position: center bottom -30px;
    background-size: 560px auto;
    opacity: 0.12;
  }
  .hero__badge {
    font-size: 12px;
    padding: 10px 16px;
    margin-bottom: 24px;
  }
  .hero__title {
    font-size: 34px;
    line-height: 1.12;
  }
  .hero__text {
    font-size: 15px;
    line-height: 1.7;
  }
  .hero__actions {
    margin-top: 28px;
  }
  .hero__photo {
    max-height: 400px;
  }

  .audience {
    padding: 66px var(--gutter) 60px;
  }
  .audience__title {
    font-size: 28px;
  }
  .audience__text {
    font-size: 15px;
    line-height: 1.7;
  }
  .audience__actions {
    margin-top: 30px;
  }
  .pains {
    gap: 12px;
  }
  .pain {
    gap: 16px;
    padding: 22px 20px;
  }
  .pain__icon {
    width: 44px;
  }
  .pain__icon i {
    font-size: 22px;
  }
  .pain__text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.65;
  }

  .method {
    padding-bottom: 60px;
  }
  .method__figure {
    padding-top: 60px;
  }
  .method__panel {
    height: 380px;
  }
  .method__photo {
    height: calc(100% + 60px);
  }
  .method__title {
    font-size: 28px;
  }
  .method__text {
    font-size: 15px;
    line-height: 1.7;
  }
  .method__actions {
    margin-top: 30px;
  }

  .about {
    padding-bottom: 60px;
  }
  .about__figure {
    padding-top: 60px;
  }
  .about__panel {
    height: 380px;
    min-height: 0;
  }
  .about__photo {
    height: calc(100% + 60px);
  }
  .about__title {
    font-size: 28px;
  }
  .about__text {
    font-size: 15px;
    line-height: 1.7;
  }
  .about__actions {
    margin-top: 30px;
  }

  section.blog {
    padding-bottom: 60px;
  }
  .blog__title {
    font-size: 28px;
  }
  .blog__list {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
    margin-top: 34px;
    margin-inline: auto;
    gap: 14px;
  }
  .post__card {
    padding: 26px 22px;
  }
  .post__title {
    font-size: 20px;
  }
  .post__text {
    font-size: 15px;
    line-height: 1.7;
  }
  .post__link {
    padding-top: 22px;
  }
  .blog__actions {
    margin-top: 34px;
  }

  .faq {
    padding-bottom: 60px;
  }
  .faq__title {
    font-size: 28px;
  }
  .faq__list {
    gap: 12px;
  }
  .faq__btn {
    gap: 14px;
    padding: 22px 20px;
    font-size: 16px;
  }
  .faq__sign {
    width: 34px;
    height: 34px;
  }
  .faq__sign::before,
  .faq__sign::after {
    width: 13px;
  }
  .faq__text {
    padding: 0 20px 22px;
    font-size: 15px;
    line-height: 1.7;
  }

  .ig {
    padding-bottom: 66px;
  }
  .ig__title {
    font-size: 28px;
  }
  .ig__list {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
    margin-top: 34px;
    margin-inline: auto;
    gap: 14px;
  }
  .ig__actions {
    margin-top: 34px;
  }

  .credits {
    min-height: 66px;
  }
  .cta__title {
    font-size: 28px;
  }
  .cta__text {
    font-size: 15px;
    line-height: 1.7;
  }
  .cta__actions {
    margin-top: 30px;
  }
  /* no celular a foto vem depois do texto, encostada na base do painel */
  .cta__figure {
    order: 1;
  }
  .cta__content {
    order: 0;
    padding-top: 0;
    padding-bottom: 34px;
  }
  .cta__photo {
    max-height: 360px;
  }
  /* marca d'água grande, centralizada e ancorada na base do painel */
  .cta__panel::before {
    background-position: center bottom -30px;
    background-size: 560px auto;
    opacity: 0.12;
  }

  .praise {
    padding: 16px var(--gutter) 26px;
  }
  .praise__title {
    font-size: 28px;
  }
  .praise__list {
    columns: 1;
    margin-top: 34px;
  }
  .quote {
    margin-bottom: 14px;
    padding: 26px 22px;
    gap: 14px;
  }
  .quote__text {
    font-size: 15px;
    line-height: 1.7;
  }
  .praise__actions {
    margin-top: 20px;
  }

  /* no celular o círculo tem tamanho fixo: acompanhar a altura do card
     deixava o ícone grande demais nos itens de texto mais longo */
  @supports (font-size: 100cqh) {
    .pain__icon {
      width: 44px;
      min-width: 0;
      align-self: flex-start;
    }
    .pain__icon i {
      font-size: 22px;
    }
  }
}

@media (max-width: 380px) {
  .brand__text {
    display: none;
  }
  .hero__title {
    font-size: 30px;
  }
}

/* =========================================================
   WORDPRESS — acessibilidade, editor e elementos do CMS
   ========================================================= */

/* --- Texto só para leitores de tela --- */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  clip: auto;
  width: auto;
  height: auto;
}

/* --- Link "pular para o conteúdo" --- */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
}
.skip-link:focus {
  left: 24px;
  top: 24px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--clay);
  color: #fff8f2;
  font-size: 14px;
  font-weight: 500;
}

/* --- Barra de administração --- */
.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* --- Alinhamentos e legendas do editor --- */
.prose .alignleft {
  float: left;
  margin: 8px 28px 20px 0;
  max-width: 45%;
}
.prose .alignright {
  float: right;
  margin: 8px 0 20px 28px;
  max-width: 45%;
}
.prose .aligncenter {
  margin-inline: auto;
  text-align: center;
}
.prose .alignwide,
.prose .alignfull {
  width: 100%;
}
.prose img {
  height: auto;
  border-radius: var(--radius-panel);
}
.prose .wp-caption-text,
.prose .wp-element-caption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink);
  opacity: 0.7;
  text-align: center;
}
.prose ol {
  display: grid;
  gap: 12px;
  padding-left: 22px;
  list-style: decimal;
}
.prose ol li::marker {
  color: var(--clay);
  font-weight: 600;
}
.prose hr,
.prose .wp-block-separator {
  margin: 46px 0;
  border: 0;
  border-top: 1px solid rgba(198, 168, 146, 0.5);
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.prose th,
.prose td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(198, 168, 146, 0.4);
  text-align: left;
}
.prose code,
.prose pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
}
.prose pre {
  padding: 22px 24px;
  border-radius: 20px;
  background: var(--sand);
  overflow-x: auto;
}
.prose .wp-block-embed__wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: var(--radius-panel);
}

/* --- Post protegido por senha --- */
.prose .post-password-form input[type="password"] {
  padding: 14px 18px;
  border: 1.5px solid rgba(198, 168, 146, 0.6);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
}

/* --- Formulário de busca --- */
.archive__search {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.searchform {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
  max-width: 560px;
}
.searchform__field {
  flex: 1;
  min-width: 220px;
  padding: 15px 22px;
  border: 1.5px solid rgba(198, 168, 146, 0.6);
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.25s ease;
}
.searchform__field::placeholder {
  color: var(--nude);
}
.searchform__field:focus {
  outline: none;
  border-color: var(--clay);
}

/* --- Paginação interna de artigos longos --- */
.prose .pager {
  margin-top: 46px;
}

/* --- Reticências da paginação --- */
.pager__item.is-dots {
  background: transparent;
  pointer-events: none;
}
