/* =========================================================
   Coleção Anjinhos de Proteção — Landing Page
   Design: ateliê afetivo, ponto-corrido como fio condutor visual
   ========================================================= */

:root {
  --verde-salvia: #7C9077;
  --verde-salvia-escuro: #5f7259;
  --verde-profundo: #3E5240;
  --rosa-antigo: #B97278;
  --rosa-antigo-escuro: #9c5a60;
  --rosa-claro: #F3E3DD;
  --terracota: #BC7452;
  --terracota-escuro: #9c5c3f;
  --dourado: #B8944F;
  --creme: #FBF6EE;
  --off-white: #FAF7F2;
  --branco: #FFFFFF;
  --marrom-texto: #443A32;
  --cinza-texto: #746A60;

  --bg: var(--creme);
  --bg-alt: var(--off-white);
  --bg-card: var(--branco);
  --text: var(--marrom-texto);
  --text-muted: var(--cinza-texto);
  --accent: var(--verde-profundo);
  --accent-soft: var(--verde-salvia);
  --rose: var(--rosa-antigo);
  --border-soft: #E7DCCB;

  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, system-ui, sans-serif;

  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-soft: 0 10px 30px -12px rgba(68, 58, 50, 0.18);
  --shadow-card: 0 4px 18px -6px rgba(68, 58, 50, 0.12);
}

/* This page commits deliberately to one warm, handmade world in both
   render states — dark-mode viewers get the same ivory workroom, not an
   inverted palette, since the product's identity (linen, thread, paper)
   doesn't translate to a dark surface without losing its meaning. */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

section {
  padding-block: clamp(56px, 9vw, 108px);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 700;
  text-wrap: balance;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  color: var(--text);
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  max-width: 60ch;
}

/* Centraliza o parágrafo de apoio sempre que ele estiver dentro de um
   bloco de cabeçalho já centralizado — consolida 8 estilos inline
   idênticos que existiam espalhados pelo HTML. */
.section-head.center .lede,
.proposito-intro .lede {
  margin-inline: auto;
}

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Eyebrow / labels ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--verde-salvia-escuro);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--dourado);
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head .eyebrow {
  margin-bottom: 14px;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

.section-head h2 {
  margin-bottom: 14px;
}

/* ---------- Stitch divider (thread motif) ---------- */

.stitch-divider {
  width: 100%;
  height: 18px;
  background-image: repeating-linear-gradient(
    to right,
    var(--dourado) 0 10px,
    transparent 10px 22px
  );
  background-size: 22px 1.6px;
  background-position: center;
  background-repeat: repeat-x;
  opacity: 0.55;
}

/* ---------- Faixa de topo ---------- */

.faixa-topo {
  background: linear-gradient(90deg, var(--terracota-escuro), var(--rosa-antigo-escuro));
  color: var(--branco);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  position: sticky;
  top: 0;
  z-index: 50;
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  padding: 16px 30px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

/* brilho que percorre o botão */
.btn-buy::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: btn-sheen 3.2s ease-in-out infinite;
}

@keyframes btn-sheen {
  0% { left: -60%; }
  35%, 100% { left: 130%; }
}

/* CTA de compra — verde esmeralda mais saturado que o resto da paleta,
   para se destacar como ponto de maior contraste sem quebrar o tom
   editorial (evita o verde neon genérico de SaaS) */
.btn-buy {
  background: #3E8F63;
  color: var(--branco);
  box-shadow: 0 14px 30px -12px rgba(62, 143, 99, 0.55), 0 0 0 0 rgba(62, 143, 99, 0.5);
  animation: btn-pulse-buy 2.6s ease-in-out infinite;
}

.btn-buy:hover {
  background: #479c6c;
  animation-play-state: paused;
}

@keyframes btn-pulse-buy {
  0%, 100% { box-shadow: 0 14px 30px -12px rgba(62, 143, 99, 0.55), 0 0 0 0 rgba(62, 143, 99, 0.45); }
  50% { box-shadow: 0 14px 30px -12px rgba(62, 143, 99, 0.55), 0 0 0 10px rgba(62, 143, 99, 0); }
}

.btn-outline {
  background: transparent;
  border-color: var(--verde-profundo);
  color: var(--verde-profundo);
}

.btn-outline:hover {
  background: var(--verde-profundo);
  color: var(--branco);
}

.btn-block {
  width: 100%;
}

.microcopy {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* ---------- Fotos da coleção ---------- */

.img-photo {
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.ph-16x9 { aspect-ratio: 16 / 9; }
.ph-4x3 { aspect-ratio: 4 / 3; }
.ph-4x5 { aspect-ratio: 4 / 5; }
.ph-selo { aspect-ratio: 1 / 1; max-width: 140px; }

/* =========================================================
   HERO
   ========================================================= */

.hero {
  padding-top: clamp(40px, 7vw, 76px);
  padding-bottom: clamp(48px, 7vw, 80px);
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(100deg, #8a6a2f 0%, #e2c581 22%, #fdf1cf 42%, #c9a355 58%, #a97c34 78%, #ecd28f 100%);
  background-size: 220% 100%;
  color: #4a3612;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 16px -6px rgba(137, 105, 46, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  animation: hero-badge-sheen 5s ease-in-out infinite;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.4));
}

@keyframes hero-badge-sheen {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero h1 {
  margin-bottom: 18px;
  max-width: 22ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--rosa-antigo);
}

.hero .lede {
  max-width: 54ch;
  margin-inline: auto;
  margin-bottom: 36px;
}

.hero-media {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 36px;
  padding-bottom: 22px;
}

/* Imagem (PNG/WebP com fundo transparente) aparece crua, sem
   moldura, sombra ou recorte ao redor — a proporção natural do
   arquivo é preservada em vez de forçar um box 16:9. */
.hero-photo {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 26px;
  margin-bottom: 32px;
  max-width: 640px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96rem;
  color: var(--text);
}

.hero-bullets svg {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  color: var(--verde-salvia-escuro);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* =========================================================
   FAIXA (marquee)
   ========================================================= */

.faixa {
  padding-block: clamp(40px, 6vw, 64px);
  background: var(--bg-alt);
  border-block: 1px solid var(--border-soft);
}

.faixa .section-head {
  margin-bottom: 28px;
}

.marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 42s linear infinite;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    overflow-x: auto;
  }
}

.marquee-track .img-photo {
  width: 168px;
  flex-shrink: 0;
}

/* =========================================================
   MOMENTOS (three groups)
   ========================================================= */

.momentos-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

@media (min-width: 780px) {
  .momentos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.momento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.momento-card .img-photo {
  border-radius: 0;
  border-bottom: 1px solid var(--border-soft);
}

.momento-body {
  padding: 24px;
}

.momento-body .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracota-escuro);
  margin-bottom: 10px;
}

.momento-body h3 {
  margin-bottom: 10px;
}

.momento-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.momento-list li {
  font-size: 0.78rem;
  color: var(--verde-salvia-escuro);
  background: #EEF1EA;
  padding: 5px 12px;
  border-radius: 100px;
}

/* =========================================================
   PRESENTEAR / DECORAR / VENDER
   ========================================================= */

.proposito {
  background: var(--bg-alt);
}

.proposito-intro {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 56px);
}

.proposito-intro h2 {
  margin-bottom: 16px;
}

.proposito-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 780px) {
  .proposito-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.proposito-card {
  text-align: center;
  padding: clamp(28px, 4vw, 38px) 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
}

.proposito-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rosa-claro);
  color: var(--rosa-antigo-escuro);
}

.proposito-icon svg {
  width: 26px;
  height: 26px;
}

.proposito-card h3 {
  margin-bottom: 10px;
}

.proposito-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =========================================================
   OBJEÇÃO / facilidade
   ========================================================= */

.facilidade-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 36px;
}

.facilidade-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
}

.facilidade-card svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--verde-salvia-escuro);
  margin-top: 2px;
}

.facilidade-card span {
  font-size: 0.95rem;
}

.destaque-frase {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--verde-profundo);
  max-width: 640px;
  margin-inline: auto;
  padding: 26px 20px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

/* =========================================================
   ASPECTO FINANCEIRO
   ========================================================= */

/* .fluxo-arrow: ícone de seta reaproveitado aqui via .financeiro-seta */
.fluxo-arrow {
  color: var(--dourado);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.financeiro-media {
  width: 100%;
  max-width: 420px;
  margin: 0 auto clamp(32px, 5vw, 48px);
}

/* Card flutuante estático — mesma linguagem de profundidade da hero,
   porém sem animação, apenas para "abrir" a seção. */
.financeiro-media .img-photo {
  box-shadow:
    0 30px 60px -20px rgba(68, 58, 50, 0.32),
    0 12px 24px -10px rgba(68, 58, 50, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.6);
}

.financeiro-comparativo {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  margin: 40px 0;
}

.financeiro-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  flex: 1 1 220px;
  min-width: 0;
  max-width: 320px;
  box-shadow: var(--shadow-card);
}

.financeiro-card-img {
  width: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border-soft);
}

.financeiro-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: clamp(14px, 3vw, 22px) clamp(14px, 4vw, 24px);
}

.financeiro-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.financeiro-valor {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.4vw, 2.3rem);
  font-weight: 700;
  color: var(--accent);
}

.financeiro-venda .financeiro-valor {
  color: #3E8F63;
}

.financeiro-venda {
  border-color: rgba(62, 143, 99, 0.35);
}

.financeiro-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.financeiro-seta {
  color: var(--dourado);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 480px) {
  .financeiro-body {
    padding: 12px 10px;
  }
}

/* =========================================================
   BÔNUS
   ========================================================= */

.bonus-section {
  background: linear-gradient(180deg, #F4E9DF 0%, #EEDFCF 100%);
  position: relative;
}

.bonus-section::before,
.bonus-section::after {
  content: "";
  display: block;
  height: 12px;
  background-image: repeating-linear-gradient(
    to right,
    var(--dourado) 0 10px,
    transparent 10px 22px
  );
  background-size: 22px 2px;
  background-position: center;
  opacity: 0.5;
}

.bonus-section .section-head.center {
  max-width: 720px;
}

.bonus-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.bonus-card .img-photo {
  border-radius: 0;
}

.bonus-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.bonus-selo {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracota-escuro);
  background: var(--rosa-claro);
  padding: 6px 12px;
  border-radius: 100px;
  margin-top: auto;
}

.bonus-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.bonus-closing {
  margin-top: clamp(40px, 6vw, 60px);
  text-align: center;
}

.bonus-closing p {
  max-width: 640px;
  margin-inline: auto;
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.fpv {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  color: var(--verde-profundo);
}

.fpv span {
  padding: 10px 22px;
  background: var(--branco);
  border-radius: 100px;
  box-shadow: var(--shadow-card);
}

.fpv .fpv-arrow {
  color: var(--rosa-antigo);
  font-size: 1.4rem;
}

/* =========================================================
   PROVAS SOCIAIS
   ========================================================= */

.provas-section {
  background: var(--bg-alt);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 720px) {
  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.depoimento-card {
  background: var(--branco);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.5vw, 30px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

/* leve variação de tom no topo de cada card — mesmo design system,
   apenas para os quatro não lerem como blocos idênticos */
.depoimento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.depoimento-rosa::before {
  background: var(--rosa-antigo);
}

.depoimento-verde::before {
  background: var(--verde-salvia);
}

.depoimento-dourado::before {
  background: var(--dourado);
}

.depoimento-stars {
  color: var(--dourado);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.depoimento-texto {
  margin: 0 0 20px;
}

.depoimento-texto p {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--marrom-texto);
}

.depoimento-divider {
  height: 1px;
  background: var(--border-soft);
  margin-bottom: 18px;
}

.depoimento-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.depoimento-avatar {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--rosa-claro);
  background: linear-gradient(155deg, var(--rosa-claro) 0%, var(--off-white) 100%);
}

.depoimento-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* placeholder elegante enquanto a foto real não existe */
.depoimento-avatar.sem-foto img {
  display: none;
}

.depoimento-avatar.sem-foto {
  display: flex;
  align-items: center;
  justify-content: center;
}

.depoimento-avatar.sem-foto::after {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px dashed var(--dourado);
  opacity: 0.6;
}

.depoimento-quem {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.depoimento-quem strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--verde-profundo);
}

.depoimento-rosa .depoimento-quem strong {
  color: var(--rosa-antigo-escuro);
}

.depoimento-quem span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.provas-section .destaque-frase {
  margin-top: clamp(36px, 5vw, 52px);
}

/* =========================================================
   BIOGRAFIA DA EXPERT
   ========================================================= */

.bio-section {
  background: var(--bg-alt);
}

.bio-grid {
  display: grid;
  gap: clamp(36px, 6vw, 64px);
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 780px) {
  .bio-grid {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
  }
}

/* ---------- Coluna da foto ---------- */

.bio-visual {
  position: relative;
  max-width: 380px;
  margin-inline: auto;
  margin-bottom: 38px;
}

@media (min-width: 780px) {
  .bio-visual {
    margin-inline: 0;
  }
}

.bio-photo {
  border-radius: var(--radius-lg);
}

.bio-experience-badge {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 280px;
  background: var(--branco);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 14px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bio-experience-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 3px;
  background: var(--rosa-antigo);
}

.bio-experience-numero {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--verde-profundo);
}

.bio-experience-legenda {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* ---------- Coluna de conteúdo ---------- */

.bio-body {
  padding-top: clamp(28px, 5vw, 0px);
}

@media (min-width: 780px) {
  .bio-body {
    padding-top: 0;
  }
}

.bio-role {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.bio-story {
  display: grid;
  gap: 16px;
  max-width: 58ch;
  margin-bottom: clamp(24px, 4vw, 34px);
}

.bio-story p {
  color: var(--text);
  line-height: 1.75;
}

.bio-story strong {
  color: var(--verde-profundo);
  font-weight: 700;
}

.bio-credentials {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(28px, 4vw, 38px);
  padding: 18px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.bio-credential {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
  flex: 1 1 180px;
}

.bio-credential svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--verde-salvia-escuro);
}

.bio-manifesto {
  position: relative;
  max-width: 52ch;
  background: var(--rosa-claro);
  border-left: 3px solid var(--rosa-antigo);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 26px;
}

.bio-manifesto p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  color: var(--rosa-antigo-escuro);
  line-height: 1.55;
}

/* =========================================================
   CERTIFICADO DE CONCLUSÃO
   ========================================================= */

.certificado-section {
  background: #fffaf3;
  position: relative;
}

.certificado-section::before,
.certificado-section::after {
  content: "";
  display: block;
  height: 12px;
  background-image: repeating-linear-gradient(
    to right,
    var(--dourado) 0 10px,
    transparent 10px 22px
  );
  background-size: 22px 1.6px;
  background-position: center;
  opacity: 0.4;
}

.certificado-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.certificado-section::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.certificado-grid {
  display: grid;
  gap: clamp(36px, 6vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 780px) {
  .certificado-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .certificado-visual {
    order: -1;
  }
}

/* ---------- Coluna de texto ---------- */

.certificado-body p {
  color: var(--text);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 56ch;
}

.certificado-highlight {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08em;
  color: var(--rosa-antigo);
}

.certificado-beneficios {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: clamp(22px, 3.5vw, 30px);
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}

.certificado-beneficios li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
  flex: 1 1 160px;
}

.certificado-beneficios svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--verde-salvia-escuro);
}

/* ---------- Coluna visual ---------- */

.certificado-visual {
  position: relative;
  max-width: 460px;
  margin-inline: auto;
}

/* forma orgânica creme atrás do certificado, como se ele estivesse
   apoiado sobre papel/tecido — sem virar um mockup elaborado */
.certificado-backdrop {
  position: absolute;
  inset: -18px;
  background: linear-gradient(155deg, var(--rosa-claro) 0%, #f7edcf 60%, var(--off-white) 100%);
  border-radius: 34% 66% 62% 38% / 46% 40% 60% 54%;
  z-index: 0;
}

.certificado-imagem {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
  transform: rotate(-1deg);
  box-shadow: 0 22px 44px -18px rgba(68, 58, 50, 0.28);
  object-fit: contain;
  background: var(--branco);
}

/* =========================================================
   OFERTA
   ========================================================= */

.oferta-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 820px) {
  .oferta-grid {
    grid-template-columns: 1fr 1.08fr;
  }
}

.plano-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-soft);
  padding: clamp(28px, 4vw, 38px);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ---------- Coleção Completa — champagne / convite elegante ---------- */

.plano-completa {
  --gold-light: #f7edcf;
  --gold-champagne: #e8d099;
  --gold-medium: #c8a75d;
  --gold-dark: #8d6d2d;
  --ivory: #fffaf0;
  --rosa-bronze: #c99a7a;
  --rosa-bronze-escuro: #a9704f;

  border: 1.5px solid var(--gold-champagne);
  box-shadow: 0 18px 45px rgba(112, 82, 28, 0.14), var(--shadow-card);
  /* mesmo fio rosa/bronze usado na faixa de topo e no bônus,
     entrelaçado ao dourado champagne — a seção de preço herda o
     tom emocional já construído ao longo da página */
  background: linear-gradient(150deg, #fffdf7 0%, #f9f0da 38%, #f2dfb7 62%, #ecc9a8 82%, #e0b190 100%);
  padding-top: clamp(34px, 4.6vw, 44px);
}

/* brilho metálico estático — sem animação. Fica contido em um
   wrapper próprio (não o card) para não cortar o selo superior,
   que precisa "vazar" para fora da borda do card. */
.plano-completa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 820px) {
  .plano-completa {
    transform: scale(1.035);
  }
}

.plano-selo-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(100deg, var(--verde-profundo) 0%, var(--verde-profundo) 70%, var(--rosa-bronze-escuro) 130%);
  color: var(--ivory);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  box-shadow: 0 8px 18px -6px rgba(112, 82, 28, 0.4);
  white-space: nowrap;
}

.plano-selo-star {
  width: 12px;
  height: 12px;
  color: var(--gold-champagne);
}

.plano-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--verde-salvia-escuro);
  background: #EEF1EA;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.plano-completa .plano-badge {
  position: relative;
  color: var(--rosa-bronze-escuro);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(201, 154, 122, 0.4);
}

.plano-card h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.plano-completa h3 {
  position: relative;
  color: var(--deep-green, var(--verde-profundo));
}

.plano-preco {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-block: 14px 6px;
}

.plano-preco .valor {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--accent);
}

.plano-completa .plano-preco .valor {
  font-size: clamp(2.3rem, 4.6vw, 3.1rem);
  color: var(--verde-profundo);
}

.valor-cifrao {
  font-size: 0.55em;
  font-weight: 700;
  margin-right: 2px;
}

.plano-card > .microcopy {
  position: relative;
  margin-bottom: 22px;
}

.plano-lista {
  position: relative;
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.plano-lista li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.plano-lista svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--verde-salvia-escuro);
}

.plano-completa .plano-lista svg {
  color: var(--verde-profundo);
}

.plano-card .btn {
  position: relative;
  margin-top: auto;
}

.plano-completa .btn-buy {
  background: #3f7757;
  box-shadow:
    0 0 0 4px rgba(232, 208, 153, 0.45),
    0 14px 30px -12px rgba(62, 143, 99, 0.5);
  animation: none;
}

.plano-completa .btn-buy::before {
  animation: none;
  content: none;
}

.plano-completa .btn-buy:hover {
  background: #356649;
  transform: translateY(-1px);
  box-shadow:
    0 0 0 5px rgba(232, 208, 153, 0.55),
    0 16px 34px -12px rgba(62, 143, 99, 0.55);
}

.plano-lista li.destaque-item {
  font-weight: 700;
  color: var(--verde-profundo);
}

.plano-completa .plano-lista li.destaque-item {
  color: var(--gold-dark);
}

.plano-completa .plano-lista li.destaque-item svg {
  color: var(--gold-medium);
}

.oferta-comparativo {
  text-align: center;
  max-width: 560px;
  margin: 32px auto 0;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.oferta-comparativo strong {
  color: var(--rosa-antigo-escuro);
}

@media (max-width: 819px) {
  .plano-completa {
    margin-top: 12px;
  }
}

/* =========================================================
   GARANTIA
   ========================================================= */

.garantia {
  background: var(--bg-alt);
}

.garantia-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

@media (min-width: 640px) {
  .garantia-box {
    grid-template-columns: auto 1fr;
    text-align: left;
  }
}

.garantia-box .img-photo {
  margin-inline: auto;
}

.garantia-box h2 {
  margin-bottom: 12px;
}

.garantia-box p {
  color: var(--text-muted);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--verde-profundo);
  cursor: pointer;
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
  color: var(--rosa-antigo);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =========================================================
   CTA FINAL
   ========================================================= */

.cta-final {
  background: var(--verde-profundo);
  color: var(--creme);
}

.cta-final .section-head.center h2,
.cta-final .section-head.center .eyebrow {
  color: var(--creme);
}

.cta-final .section-head.center p {
  color: #D9E2D6;
}

.cta-final-actions {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin-inline: auto;
}

@media (min-width: 620px) {
  .cta-final-actions {
    grid-template-columns: 1fr 1fr;
  }
}

.cta-final-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.cta-final-card.destaque {
  background: var(--rosa-antigo);
  border-color: var(--rosa-antigo);
}

.cta-final-card .plano-nome {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.cta-final-card .plano-valor {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
}

.cta-final-card .btn {
  background: var(--creme);
  color: var(--verde-profundo);
  margin-top: 4px;
}

.cta-final-card.destaque .btn {
  background: var(--branco);
  color: var(--rosa-antigo-escuro);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--marrom-texto);
  color: #E8E1D8;
  padding-block: 44px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--branco);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.88rem;
  color: #D8CFC3;
}

.footer-links a:hover {
  color: var(--branco);
}

.footer-fine {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-size: 0.78rem;
  color: #B7AC9D;
  line-height: 1.6;
}

/* =========================================================
   Utility
   ========================================================= */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--verde-profundo);
  color: var(--branco);
  padding: 12px 20px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
}
