/* ============================================================
   Jornada Relembrar · Um Novo Mundo
   Identidade: sóbria, feminina, contemplativa.
   ============================================================ */

:root {
  --creme: #F5F1EA;
  --branco-quente: #FBFAF6;
  --azul-sereno: #6E4FA3;
  --azul-noite: #3A2A60;
  --tinta: #4A443D;
  --terracota: #B08D57;
  --azul-claro: #C7B4E0;

  --serif-display: "Cormorant Garamond", Georgia, serif;
  --serif-body: "EB Garamond", Georgia, serif;
  --script: "Pinyon Script", cursive;
  --sans: "Inter", system-ui, sans-serif;

  --max: 1080px;
  --max-narrow: 720px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--creme);
  color: var(--tinta);
  font-family: var(--serif-body);
  font-size: 1.125rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--azul-sereno); }

em { font-style: italic; }

/* ---------- Reveal no scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   LOCKUP "Jornada Relembrar"
   ============================================================ */
.lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.lockup__jornada {
  font-family: var(--serif-display);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-weight: 500;
  color: var(--azul-sereno);
  font-size: 0.92rem;
  padding-left: 0.42em; /* compensa o tracking final */
}
.lockup__relembrar {
  font-family: var(--script);
  color: var(--azul-sereno);
  font-size: 2.9rem;
  line-height: 0.8;
  margin-top: -0.05em;
}
.lockup__flourish {
  display: block;
  width: 88px;
  height: 10px;
  margin-top: 0.35rem;
  background: no-repeat center/contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='10' viewBox='0 0 88 10'%3E%3Cpath d='M2 5 C 20 1, 30 9, 44 5 S 68 1, 86 5' fill='none' stroke='%236E4FA3' stroke-width='1' stroke-linecap='round'/%3E%3Ccircle cx='44' cy='5' r='1.4' fill='%23B08D57'/%3E%3C/svg%3E");
}
.lockup--selo { margin-bottom: 2.2rem; }
.lockup--footer .lockup__jornada { color: var(--azul-claro); }
.lockup--footer .lockup__relembrar { color: var(--branco-quente); }

/* ---------- Logo oficial (imagem) ---------- */
.brand-logo {
  width: auto;
  height: auto;
  margin: 0 auto;
}
.brand-logo--hero {
  max-width: 280px;
  width: 62%;
  margin-bottom: 2.4rem;
}
.brand-logo--final {
  max-width: 240px;
  width: 56%;
  margin-bottom: 1.8rem;
}
.brand-logo--footer {
  max-width: 210px;
  width: 60%;
  margin-bottom: 1.6rem;
  /* deixa o logo branco sobre o fundo escuro do rodapé */
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
@media (max-width: 560px) {
  .brand-logo--hero { max-width: 230px; width: 72%; }
  .brand-logo--final { max-width: 210px; width: 66%; }
}

/* ============================================================
   HERÓI
   ============================================================ */
.hero {
  position: relative;
  padding: 4rem 1.5rem 3.5rem;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -10%, var(--branco-quente), transparent 60%),
    var(--creme);
}
.hero__inner {
  max-width: var(--max-narrow);
  margin: 0 auto;
}
.hero__title {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1.12;
  color: var(--azul-noite);
  margin: 0 0 1.4rem;
  letter-spacing: 0.005em;
}
.hero__subtitle {
  font-size: clamp(1.1rem, 3.6vw, 1.3rem);
  max-width: 36em;
  margin: 0 auto 2.4rem;
  color: var(--tinta);
}
.hero__cta { margin-bottom: 3rem; }
.hero__support {
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: #7a7268;
  max-width: 30em;
  margin: 1.2rem auto 0;
}
.hero__figure {
  max-width: 420px;
  margin: 0 auto;
}
.hero__figure img {
  border-radius: 10px;
  box-shadow: 0 30px 60px -32px rgba(58,42,96,0.55);
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--branco-quente);
  background-color: var(--azul-sereno);
  padding: 1rem 2.4rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 6px 18px -10px rgba(58, 42, 96, 0.55);
}
.btn:hover,
.btn:focus-visible {
  background-color: var(--azul-noite);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -12px rgba(58, 42, 96, 0.6);
}
.btn--large {
  padding: 1.15rem 3rem;
  font-size: 1.06rem;
}

/* ============================================================
   SEÇÕES — ritmo irregular, generoso
   ============================================================ */
.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}
.section--narrow { max-width: var(--max-narrow); }
.section--paper {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(251,250,246,0.70), rgba(251,250,246,0.80)),
    url("../assets/bg-papel.webp") center / cover,
    var(--branco-quente);
  border-top: 1px solid rgba(199,180,224,0.25);
  border-bottom: 1px solid rgba(199,180,224,0.25);
}
.section--paper > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section--paper.section--narrow > * { max-width: var(--max-narrow); }
/* garante a centralização dos blocos que definem a própria margem (título, kicker) */
.section--paper > .kicker,
.section--paper > .section__title,
.section--paper > .prose { margin-left: auto; margin-right: auto; }

.kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--terracota);
  text-align: center;
  margin: 0 0 0.9rem;
}
.section__title {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  line-height: 1.18;
  color: var(--azul-noite);
  text-align: center;
  margin: 0 0 1.8rem;
}
.section__title--left { text-align: left; }

.prose { max-width: 38em; }
.prose--center { margin-left: auto; margin-right: auto; text-align: center; }
.prose p { margin: 0 0 1.2rem; }
.prose p:last-child { margin-bottom: 0; }

.section__cta { text-align: center; margin-top: 3rem; }

/* ---------- Divisor ornamental (fleuron) ---------- */
.divider {
  display: block;
  width: 100%;
  max-width: 240px;
  height: 22px;
  margin: 1rem auto;
  background: no-repeat center/contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='22' viewBox='0 0 240 22'%3E%3Cg fill='none' stroke='%23C7B4E0' stroke-width='1' stroke-linecap='round'%3E%3Cpath d='M10 11 H100'/%3E%3Cpath d='M140 11 H230'/%3E%3Cpath d='M120 4 C124 8 124 14 120 18 C116 14 116 8 120 4Z' fill='%23C7B4E0' stroke='none'/%3E%3Ccircle cx='104' cy='11' r='1.4' fill='%23B08D57' stroke='none'/%3E%3Ccircle cx='136' cy='11' r='1.4' fill='%23B08D57' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
}

/* ============================================================
   SOBRE O LIVRO
   ============================================================ */
.book__layout {
  display: grid;
  gap: 2.6rem;
  align-items: center;
}
.book__figure {
  max-width: 300px;
  margin: 0 auto;
  padding: 1rem 0;
}
.book__figure img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 26px 46px -24px rgba(58,42,96,0.5);
}
@media (min-width: 760px) {
  .book__layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
  }
  .book__figure { max-width: 280px; }
}

/* ============================================================
   SEÇÃO DIVIDIDA (imagem + texto) — O que é a Jornada
   ============================================================ */
.split__layout {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}
.split__figure { margin: 0 auto; max-width: 420px; }
.split__figure img {
  border-radius: 8px;
  box-shadow: 0 22px 44px -28px rgba(58,42,96,0.5);
}
@media (min-width: 760px) {
  .split__layout { grid-template-columns: 1fr 1.05fr; gap: 3.4rem; }
  .split__figure { max-width: none; }
}

/* ============================================================
   BANDA DE CITAÇÃO — trecho do livro
   ============================================================ */
.quote-band {
  position: relative;
  padding: 5.5rem 1.5rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(58,42,96,0.72), rgba(58,42,96,0.6)),
    url("../assets/quote-bg.jpg") no-repeat center / cover;
}
.quote-band__inner { max-width: 30em; margin: 0 auto; }
.quote-band__text {
  font-family: var(--serif-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 4.6vw, 2.3rem);
  line-height: 1.4;
  color: var(--branco-quente);
  margin: 0;
  text-wrap: balance;
}
.quote-band__text::before { content: "“"; }
.quote-band__text::after { content: "”"; }
.quote-band__source {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  color: var(--azul-claro);
  margin: 1.6rem 0 0;
}

/* ============================================================
   COMO FUNCIONA — blocos
   ============================================================ */
.features {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 620px) {
  .features { grid-template-columns: 1fr 1fr; gap: 1.8rem 2.4rem; }
}
.feature {
  padding: 1.6rem 1.4rem 1.6rem 1.6rem;
  background: var(--creme);
  border: 1px solid rgba(199,180,224,0.3);
  border-radius: 10px;
  position: relative;
}
.section--paper .feature { background: var(--branco-quente); }
.feature__mark {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 0.9rem;
  background: no-repeat center/contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cg fill='none' stroke='%236E4FA3' stroke-width='1.1' stroke-linecap='round'%3E%3Cpath d='M15 6 C19 10 19 20 15 24 C11 20 11 10 15 6Z'/%3E%3Cpath d='M15 8 V22'/%3E%3C/g%3E%3C/svg%3E");
}
.feature__title {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--azul-sereno);
  margin: 0 0 0.5rem;
}
.feature p { margin: 0; font-size: 1.04rem; line-height: 1.65; }

/* ============================================================
   LINHA DO TEMPO — As nove Cartas
   ============================================================ */
.timeline {
  list-style: none;
  margin: 2.8rem 0 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--azul-claro);
}
.timeline__item {
  position: relative;
  padding: 0.6rem 0 0.6rem 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1.15rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--creme);
  border: 1.5px solid var(--azul-sereno);
}
.timeline__mark {
  font-family: var(--serif-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--azul-noite);
}
.timeline__theme { color: var(--tinta); }
.timeline__theme.is-pending {
  font-style: italic;
  color: #9c948a;
}

/* ============================================================
   SOBRE A MARIA
   ============================================================ */
.maria__layout {
  display: grid;
  gap: 2.4rem;
  align-items: start;
}
.maria__figure { max-width: 360px; margin: 0 auto; }
.maria__figure img { border-radius: 8px; box-shadow: 0 22px 40px -28px rgba(58,42,96,0.5); }
@media (min-width: 760px) {
  .maria__layout { grid-template-columns: 0.8fr 1.2fr; gap: 3.2rem; }
  .maria__figure { position: sticky; top: 2rem; }
}
.credentials {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(199,180,224,0.4);
  font-family: var(--sans);
  font-size: 0.86rem;
  line-height: 1.65;
  color: #7a7268;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
/* ---------- Carrossel de depoimentos (imagens) ---------- */
.carousel {
  position: relative;
  margin-top: 2.8rem;
}
.carousel__track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1.4rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--azul-claro) transparent;
}
.carousel__track::-webkit-scrollbar { height: 6px; }
.carousel__track::-webkit-scrollbar-thumb { background: var(--azul-claro); border-radius: 99px; }
.carousel__track::-webkit-scrollbar-track { background: transparent; }
.dep-card {
  flex: 0 0 auto;
  width: 300px;
  height: 410px;
  margin: 0;
  padding: 12px;
  background: var(--branco-quente);
  border: 1px solid rgba(199,180,224,0.4);
  border-radius: 12px;
  box-shadow: 0 16px 32px -26px rgba(58,42,96,0.5);
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dep-card picture {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.dep-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 6px;
}
.carousel__btn {
  position: absolute;
  top: calc(50% - 0.7rem);
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(199,180,224,0.6);
  background: rgba(251,250,246,0.92);
  color: var(--azul-sereno);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px -14px rgba(58,42,96,0.6);
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.carousel__btn:hover { background: var(--azul-sereno); color: var(--branco-quente); }
.carousel__btn--prev { left: -6px; }
.carousel__btn--next { right: -6px; }
.carousel__btn[disabled] { opacity: 0; pointer-events: none; }
@media (min-width: 760px) {
  .carousel__btn--prev { left: -22px; }
  .carousel__btn--next { right: -22px; }
}
@media (max-width: 560px) {
  .dep-card { width: 260px; height: 372px; }
}

.zoom-caption {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: #7a7268;
  margin: 3rem 0 0;
}
.zoom-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}
.zoom-print {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 32px -26px rgba(58,42,96,0.55);
}
.zoom-print img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ============================================================
   PLACEHOLDERS (imagens pendentes)
   ============================================================ */
.is-placeholder {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(199,180,224,0.08) 0 12px, rgba(199,180,224,0.14) 12px 24px),
    var(--creme);
  border: 1px dashed var(--azul-claro);
  border-radius: 8px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.is-placeholder img { display: none; }
.placeholder__label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--azul-sereno);
  background: rgba(251,250,246,0.85);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  text-align: center;
}
/* esconde a legenda quando a imagem real carrega */
.hero__figure:not(.is-placeholder) .placeholder__label,
.book__figure:not(.is-placeholder) .placeholder__label,
.maria__figure:not(.is-placeholder) .placeholder__label { display: none; }

/* ============================================================
   INVESTIMENTO
   ============================================================ */
.section--invest { text-align: center; position: relative; overflow: hidden; }
.price-card {
  max-width: 460px;
  margin: 2.6rem auto 0;
  padding: 2.6rem 2rem;
  background: var(--creme);
  border: 1px solid var(--azul-claro);
  border-radius: 14px;
  box-shadow: 0 26px 50px -34px rgba(58,42,96,0.55);
}
.price-card__installments {
  font-family: var(--serif-display);
  font-size: 1.7rem;
  line-height: 1.05;
  color: var(--azul-noite);
  margin: 0;
}
.price-card__installments strong {
  display: block;
  font-weight: 600;
  font-size: clamp(3.4rem, 11vw, 4.4rem);
  letter-spacing: 0.01em;
  margin-top: 0.1rem;
}
.price-card__cash {
  font-size: 1.15rem;
  color: var(--tinta);
  margin: 0.6rem 0 2rem;
}
.price-card__secure {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: #7a7268;
  margin: 1.3rem 0 0;
}
.guarantee {
  font-family: var(--sans);
  font-size: 0.86rem;
  color: #7a7268;
  text-align: center;
  max-width: 30em;
  margin: 1.6rem auto 0;
}

/* ============================================================
   FAQ — accordion
   ============================================================ */
.faq { margin-top: 2.4rem; }
.faq__item {
  border-bottom: 1px solid rgba(199,180,224,0.4);
}
.faq__item:first-child { border-top: 1px solid rgba(199,180,224,0.4); }
.faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--azul-noite);
  padding: 1.3rem 2.4rem 1.3rem 0;
  position: relative;
  line-height: 1.4;
}
.faq__icon {
  position: absolute;
  right: 2px;
  top: 1.55rem;
  width: 16px;
  height: 16px;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--azul-sereno);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.faq__icon::before { left: 0; top: 7px; width: 16px; height: 1.5px; }
.faq__icon::after { left: 7px; top: 0; width: 1.5px; height: 16px; }
.faq__question[aria-expanded="true"] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq__answer p {
  margin: 0;
  padding: 0 1rem 1.4rem 0;
  color: var(--tinta);
  font-size: 1.06rem;
}

/* ============================================================
   CONVITE FINAL
   ============================================================ */
.section--final {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.final__title {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 5.5vw, 2.8rem);
  line-height: 1.18;
  color: var(--azul-noite);
  max-width: 18em;
  margin: 0 auto 1.8rem;
}
.signature {
  font-family: var(--script);
  font-size: 2.2rem;
  color: var(--azul-sereno);
  margin: 2.6rem 0 0;
}

/* ============================================================
   ORNAMENTOS (line art real: folha e pomba)
   ============================================================ */
.ornament { position: absolute; pointer-events: none; }
.ornament--folha-tr {
  top: 0; right: -10px;
  width: 200px; height: 200px;
  opacity: 0.85;
  background: no-repeat center/contain url("../assets/folha.webp");
}
.ornament--folha-bl {
  bottom: -6px; left: -16px;
  width: 180px; height: 180px;
  opacity: 0.7;
  transform: rotate(180deg);
  background: no-repeat center/contain url("../assets/folha.webp");
}
.ornament--folha-tl {
  top: 4px; left: -10px;
  width: 190px; height: 190px;
  opacity: 0.85;
  transform: scaleX(-1);
  background: no-repeat center/contain url("../assets/folha.webp");
}
.ornament--pomba {
  bottom: 18px; right: 22px;
  width: 110px; height: 110px;
  opacity: 0.5;
  background: no-repeat center/contain url("../assets/pomba.webp");
}
@media (max-width: 640px) {
  .ornament--folha-tr,
  .ornament--folha-tl { width: 130px; height: 130px; opacity: 0.7; }
  .ornament--folha-bl { width: 120px; height: 120px; opacity: 0.55; }
  .ornament--pomba { width: 78px; height: 78px; bottom: 8px; right: 8px; }
}

/* ============================================================
   CONVITE FINAL — wrapper interno
   ============================================================ */
.final__inner {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
  background: var(--azul-noite);
  color: var(--creme);
  text-align: center;
  padding: 3.5rem 1.5rem 2.6rem;
}
.footer .lockup--footer { margin-bottom: 1.6rem; }
.footer__line {
  font-family: var(--serif-display);
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  margin: 0 0 0.8rem;
  color: var(--creme);
}
.footer__contact { margin: 0 0 1.2rem; font-size: 0.98rem; }
.footer__contact a { color: var(--azul-claro); text-decoration: none; }
.footer__contact a:hover { text-decoration: underline; }
.footer__dot { margin: 0 0.5rem; color: var(--azul-claro); }
.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer__social a { color: var(--creme); text-decoration: none; opacity: 0.85; }
.footer__social a:hover { opacity: 1; text-decoration: underline; }
.footer__copy {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--azul-claro);
  margin: 0;
  opacity: 0.8;
}

/* ============================================================
   POPUP DE CAPTURA · AMOSTRA GRÁTIS
   ============================================================ */
.lead-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(58, 42, 96, 0.55);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.lead-overlay.is-open { opacity: 1; }
.lead-overlay[hidden] { display: none; }

.lead-modal {
  position: relative;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--creme);
  border: 1px solid var(--azul-claro);
  border-radius: 14px;
  box-shadow: 0 30px 60px -30px rgba(58, 42, 96, 0.6);
  padding: 2.6rem 2rem;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.35s ease;
}
.lead-overlay.is-open .lead-modal { transform: none; }

.lead-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 32px;
  height: 32px;
  line-height: 1;
  font-size: 1.4rem;
  font-family: var(--serif-body);
  color: var(--azul-sereno);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.lead-modal__close:hover,
.lead-modal__close:focus-visible { background: rgba(199, 180, 224, 0.25); }

.lead-modal__title {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 5vw, 1.7rem);
  line-height: 1.25;
  color: var(--azul-noite);
  text-align: center;
  margin: 0 0 1rem;
}
.lead-modal__desc {
  text-align: center;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--tinta);
  margin: 0 0 1.8rem;
}
.lead-modal__step--thanks .lead-modal__desc { margin-bottom: 0; }

.lead-form { display: grid; gap: 1.1rem; }
.lead-form__field {
  display: grid;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--tinta);
}
.lead-form__field input {
  font-family: var(--serif-body);
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--azul-claro);
  border-radius: 8px;
  background: var(--branco-quente);
  color: var(--tinta);
}
.lead-form__field input:focus-visible {
  outline: 2px solid var(--azul-sereno);
  outline-offset: 1px;
}
.lead-form__error {
  font-family: var(--sans);
  font-size: 0.84rem;
  color: #9c4b3a;
  margin: 0;
}
.lead-form__submit {
  margin-top: 0.4rem;
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
}

/* ============================================================
   BOTÃO FLUTUANTE DE WHATSAPP
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--azul-sereno);
  color: var(--branco-quente);
  box-shadow: 0 8px 20px -10px rgba(58, 42, 96, 0.45);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease;
}
.whatsapp-fab.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  background: var(--azul-noite);
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab { transition: opacity 0.2s ease; }
}
