/* ─────────────────────────────────────────────────────────────
   Landing Page Penélope La Yunta — Arquitetura de Esteira Digital
   Arquivo de estilo autônomo (index.html + style.css)
   Paleta premium: preto profundo / cinza-chumbo / dourado-bronze
   ───────────────────────────────────────────────────────────── */

:root {
  --bg: #0a0a0c;
  --bg-soft: #0d0d11;
  --panel: #131318;
  --ink: #221503;
  --cream: #f3e9cf;
  --cream-dim: rgba(240, 229, 205, 0.62);
  --muted: rgba(240, 229, 205, 0.55);
  --faint: rgba(240, 229, 205, 0.32);
  --gold: #d4af37;
  --gold-soft: #eccf7d;
  --gold-bright: #f6e19a;
  --gold-deep: #9a7320;
  --hairline: rgba(212, 175, 55, 0.18);
  --radius: 22px;
  --shadow-gold: 0 16px 40px -14px rgba(212, 175, 55, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1,
h2,
h3 {
  font-family: "Cinzel", Georgia, serif;
  margin: 0;
  line-height: 1.18;
  color: var(--cream);
}

p {
  margin: 0;
}

::selection {
  background: rgba(212, 175, 55, 0.4);
  color: #fff6dd;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 22px;
}

.section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.28), transparent);
}

/* Alternância de cor de fundo entre as dobras (a hero mantém a cor original) */
main > section:nth-of-type(2) { background: #0d0d0d; }
main > section:nth-of-type(3) { background: #402004; }
main > section:nth-of-type(4) { background: #73461f; }
main > section:nth-of-type(5) { background: #0d0d0d; }
main > section:nth-of-type(6) { background: #402004; }
main > section:nth-of-type(7) { background: #73461f; }
main > section:nth-of-type(8) { background: #0d0d0d; }
main > section:nth-of-type(9) { background: #402004; }
main > section:nth-of-type(10) {
  background-image: linear-gradient(rgba(115, 70, 31, 0.72), rgba(115, 70, 31, 0.72)), url("/esteira/images/mapa-decisao.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
main > section:nth-of-type(11) { background: #0d0d0d; }

/* Decorative golden glow blobs */
.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.5;
}

.glow.g1 { width: 520px; height: 520px; top: -140px; right: -160px; background: radial-gradient(circle, rgba(212, 175, 55, 0.4), transparent 65%); }
.glow.g2 { width: 460px; height: 460px; left: -180px; top: 30%; background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 65%); }
.glow.g3 { width: 460px; height: 460px; right: -180px; top: 12%; background: radial-gradient(circle, rgba(212, 175, 55, 0.28), transparent 65%); }
.glow.g4 { width: 560px; height: 560px; left: 50%; top: -120px; transform: translateX(-50%); background: radial-gradient(circle, rgba(230, 195, 96, 0.26), transparent 65%); }

/* ── Typography helpers ─────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow.center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(212, 175, 55, 0.5);
}

.eyebrow.center::before {
  background: rgba(212, 175, 55, 0.35);
}

.title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.title.lg { font-size: 46px; }
.title.md { font-size: 34px; }

.lead-center { text-align: center; }
.lead-center .title { max-width: 820px; margin-left: auto; margin-right: auto; }
.eyebrow.center { justify-content: center; }

.gold-text {
  background: linear-gradient(115deg, var(--gold-soft) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 22px auto 0;
  color: var(--cream-dim);
  font-size: 20px;
  line-height: 1.8;
  max-width: 720px;
  text-align: center;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 38px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(160deg, var(--gold-soft) 0%, var(--gold-bright) 32%, var(--gold) 68%, var(--gold-deep) 100%);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -2px 6px rgba(154, 115, 32, 0.4), var(--shadow-gold);
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -2px 6px rgba(154, 115, 32, 0.4), 0 22px 48px -10px rgba(236, 207, 125, 0.55);
}

.btn-gold.block { width: 100%; text-transform: none; letter-spacing: 0.02em; }

.btn-gold.small {
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.09em;
}

/* ── Cards (glassmorphism) ──────────────────────────────────── */
.glass {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 26px 52px -30px rgba(0, 0, 0, 0.9);
}

/* ── Navbar ─────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 9, 12, 0.78);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong {
  font-family: "Cinzel", serif;
  color: var(--gold-soft);
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand small {
  color: var(--faint);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 5px;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 120px;
}

.hero .grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.07);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero h1 { font-size: 42px; line-height: 1.16; font-weight: 800; }

.hero-sub {
  margin-top: 24px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.6;
}

.hero-copy {
  margin-top: 18px;
  max-width: 560px;
  color: var(--cream-dim);
  font-size: 19.4px;
  line-height: 1.85;
}

.hero .btn-gold { margin-top: 34px; }

.hero-perks {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(240, 229, 205, 0.8);
  font-size: 17.5px;
  font-weight: 500;
}

.hero-perks .dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.1);
}

.hero-perks svg { width: 14px; height: 14px; stroke: var(--gold); }

/* Photo with golden frame */
.hero-media { position: relative; }

.hero-media .ring {
  position: absolute;
  inset: -12px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(246, 225, 154, 0.5), rgba(212, 175, 55, 0.18) 55%, transparent 92%);
  filter: blur(2px);
}

.hero-media .frame {
  position: relative;
  border-radius: 34px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.45), rgba(212, 175, 55, 0.08) 45%, transparent 80%);
}

.hero-media .frame img {
  width: 100%;
  border-radius: 33px;
  object-fit: cover;
  object-position: 50% 8%;
  aspect-ratio: 4 / 5;
}

.hero-media .shade {
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 12, 0.9));
  pointer-events: none;
}

.hero-float {
  position: absolute;
  left: -34px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 18px;
  background: rgba(19, 19, 24, 0.85);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(12px);
  animation: floaty 6s ease-in-out infinite;
}

.hero-float .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
}

.hero-float .ico svg { width: 16px; height: 16px; stroke: var(--gold); }

.hero-float span { font-size: 11px; font-weight: 600; line-height: 1.4; color: rgba(240, 229, 205, 0.8); }
.hero-float b { font-family: "Cinzel", serif; font-size: 14px; color: var(--gold-soft); display: block; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ── Generic centered head ──────────────────────────────────── */
.head { text-align: center; }
.head .eyebrow { justify-content: center; }

/* ── Problem ────────────────────────────────────────────────── */
.copy-block {
  max-width: 760px;
  margin: 34px auto 0;
}

.copy-block p {
  color: var(--cream-dim);
  font-size: 20px;
  line-height: 1.9;
  margin-top: 22px;
}

.copy-block p:first-child { margin-top: 0; }

.pull-quote {
  margin: 30px 0 0 10px;
  padding-left: 26px;
  border-left: 2px solid rgba(212, 175, 55, 0.4);
}

.pull-quote p {
  font-family: "Cinzel", serif;
  font-weight: 700;
  color: var(--gold-soft);
  margin-top: 12px;
  font-size: 21.25px;
}

.pull-quote p:first-child { margin-top: 0; }

/* Faça a conta card */
.math-card { padding: 46px 52px; margin-top: 52px; }

.math-card .tag {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.math-card .tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.math-card p {
  color: var(--cream-dim);
  font-size: 20px;
  line-height: 1.85;
  margin-top: 20px;
}

.math-list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.math-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.6;
  color: var(--cream);
  margin-top: 14px;
}

.math-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 11px;
  transform: rotate(45deg);
  background: var(--gold);
}

.math-end {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--hairline);
}

.math-end h3 {
  font-size: 26px;
  line-height: 1.4;
}

/* ── Solution mini cards ────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.pillar { padding: 30px 28px; transition: transform 0.3s ease; }

.pillar:hover { transform: translateY(-5px); }

.pillar .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  box-shadow: 0 0 26px -8px rgba(212, 175, 55, 0.55);
}

.pillar .ico svg { width: 22px; height: 22px; }

.pillar h3 { font-size: 16px; color: var(--gold-soft); }
.pillar p { margin-top: 12px; color: var(--muted); font-size: 17.5px; line-height: 1.75; }

.solution-foot {
  width: 100%;
  margin: 42px auto 0;
  text-align: center;
  color: var(--cream-dim);
  font-size: 20px;
  line-height: 1.85;
}

.solution-foot p + p { margin-top: 28px; }

.solution-foot strong { color: var(--cream); }

.center-cta { text-align: center; margin-top: 46px; }

/* ── Audience (para quem é / não é) ─────────────────────────── */
.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  margin-top: 60px;
}

.audience .glass { padding: 38px 40px; }

.list-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.list-head::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(212, 175, 55, 0.6);
}

.audience .yes .list-head { color: var(--gold-soft); }
.audience .no .list-head { color: rgba(240, 229, 205, 0.45); }
.audience .no .list-head::before { background: rgba(240, 229, 205, 0.2); }

.bullet-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }

.bullet-list li { display: flex; align-items: flex-start; gap: 16px; }

.bullet-list .ico {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border-radius: 50%;
}

.bullet-list .yes .ico { border: 1px solid rgba(212, 175, 55, 0.45); background: rgba(212, 175, 55, 0.15); color: var(--gold); }
.bullet-list .no .ico { border: 1px solid rgba(240, 229, 205, 0.18); background: rgba(240, 229, 205, 0.05); color: rgba(240, 229, 205, 0.4); }

.bullet-list .ico svg { width: 15px; height: 15px; }

.bullet-list .yes span { color: var(--cream); font-size: 20px; font-weight: 500; line-height: 1.65; }
.bullet-list .no span { color: var(--faint); font-size: 20px; font-weight: 500; line-height: 1.65; }

/* ── O que você recebe ──────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 58px;
}

.item { padding: 28px; }

.item .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.item .ico svg { width: 21px; height: 21px; }

.item h3 { font-size: 15px; color: var(--gold-soft); line-height: 1.45; }
.item p { margin-top: 12px; color: var(--muted); font-size: 17.5px; line-height: 1.75; }

/* ── Como funciona (timeline) ───────────────────────────────── */
.timeline {
  position: relative;
  max-width: 840px;
  margin: 60px auto 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.55), rgba(212, 175, 55, 0.12));
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  gap: 0;
  align-items: start;
  margin-top: 34px;
}

.step .badge {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: #121218;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
  box-shadow: 0 0 28px -6px rgba(212, 175, 55, 0.5);
}

.step .txt {
  grid-column: 1;
  grid-row: 1;
  padding: 4px 26px 0 0;
  text-align: right;
}

.step:nth-child(even) .txt {
  grid-column: 3;
  text-align: left;
  padding: 4px 0 0 26px;
}

.step .txt h3 { font-size: 19px; color: var(--cream); }
.step .txt p { margin-top: 8px; color: var(--faint); font-size: 17.5px; line-height: 1.7; }

/* ── Oferta / preço ─────────────────────────────────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  margin-top: 60px;
  align-items: start;
}

.price-table { padding: 34px 38px; }

.price-table h3 {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 10px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  font-size: 19.4px;
}

.price-row span:first-child { font-weight: 500; }
.price-row b { color: var(--gold-soft); font-weight: 700; white-space: nowrap; }

.price-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.35);
}

.price-total span {
  font-family: "Cinzel", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-total s {
  font-family: "Cinzel", serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--faint);
  text-decoration-color: rgba(212, 175, 55, 0.7);
  text-decoration-thickness: 2px;
}

/* Offer highlight card */
.offer-card-wrap { position: relative; }

.offer-card-wrap .border-glow {
  position: absolute;
  inset: -5px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(246, 225, 154, 0.7), rgba(212, 175, 55, 0.35) 45%, rgba(154, 115, 32, 0.6));
  filter: blur(2px);
}

.offer-card {
  position: relative;
  text-align: center;
  padding: 46px 40px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(24, 24, 31, 0.96), rgba(13, 13, 17, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.offer-card .tag2 {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.offer-card .desc {
  max-width: 360px;
  margin: 22px auto 0;
  color: var(--cream-dim);
  font-size: 18.1px;
  line-height: 1.8;
}

.offer-card .from {
  margin-top: 34px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

.offer-card .from s { color: var(--gold-soft); text-decoration-color: rgba(212, 175, 55, 0.8); }

.big-price {
  margin-top: 16px;
  font-family: "Cinzel", serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.05;
  background: linear-gradient(160deg, var(--gold-soft), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.big-price small { font-size: 34px; }

.cash {
  margin-top: 14px;
  color: var(--cream-dim);
  font-size: 18.75px;
}

.cash b { font-size: 19px; color: var(--gold-soft); }

.offer-card .btn-gold { margin-top: 34px; }

.trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
  margin: 28px 0 0;
  padding: 0;
}

.trust li { display: flex; align-items: center; gap: 8px; color: var(--faint); font-size: 12.5px; }
.trust svg { width: 15px; height: 15px; stroke: var(--gold); }

/* ── Garantia ───────────────────────────────────────────────── */
.section-guarantee { padding: 40px 0; }

.guarantee-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  padding: 54px 64px;
}

.seal { position: relative; width: 220px; height: 220px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }

.seal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.45);
}

.seal .ring {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.seal .core { position: relative; text-align: center; line-height: 1.1; }
.seal .core .kicker { font-size: 10px; font-weight: 800; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-soft); }
.seal .core .num { font-family: "Cinzel", serif; font-size: 74px; font-weight: 900; margin-top: 2px; background: linear-gradient(160deg, var(--gold-soft), var(--gold-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.seal .core .unit { font-size: 11px; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-soft); }

.guarantee-card h2 { text-align: left; }
.guarantee-card h2 .gold-text { font-size: inherit; }

.guarantee-card p {
  margin-top: 24px;
  color: var(--cream-dim);
  font-size: 20px;
  line-height: 1.9;
  max-width: 640px;
}

.guarantee-card p b { color: var(--cream); }
.guarantee-card p .g { color: var(--gold-soft); }

/* ── Quem é Penélope ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  margin-top: 60px;
}

.portrait { position: relative; max-width: 380px; margin: 0 auto; }

.portrait .backline {
  position: absolute;
  inset: -24px 24px -24px -24px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 40px;
  pointer-events: none;
}

.portrait .card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, 1);
}

.portrait img { width: 100%; object-fit: cover; }

.portrait .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 26px 26px;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 12, 0.96) 62%);
}

.portrait .caption strong { font-family: "Cinzel", serif; color: var(--gold-soft); font-size: 19px; display: block; }
.portrait .caption small { color: var(--cream-dim); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; display: block; margin-top: 6px; }

.bio > p {
  color: var(--cream-dim);
  font-size: 20px;
  line-height: 1.9;
  margin-top: 24px;
}

.bio > p:first-child { margin-top: 0; }

.quote {
  margin: 30px 0;
  border-left: 2px solid rgba(212, 175, 55, 0.5);
  padding: 8px 0 8px 28px;
}

.quote svg { width: 18px; height: 18px; stroke: rgba(212, 175, 55, 0.75); margin-bottom: 12px; transform: scaleX(-1); }

.quote blockquote {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--gold-soft);
}

/* ── Chamada final ──────────────────────────────────────────── */
.final-cta { text-align: center; padding: 48px 0; position: relative; overflow: hidden; }

.final-cta h2 { max-width: 840px; margin: 0 auto; font-size: 36px; line-height: 1.3; }
.final-cta .btn-gold { margin-top: 44px; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-wrap { max-width: 780px; margin: 54px auto 0; }

.faq-item { border-bottom: 1px solid rgba(212, 175, 55, 0.12); }

.faq-item:last-child { border-bottom: 0; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 6px;
  background: none;
  border: 0;
  color: var(--cream);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-q .chev { flex: 0 0 auto; color: var(--gold); transition: transform 0.3s ease; }
.faq-q .chev svg { width: 18px; height: 18px; display: block; }

.faq-item.open .faq-q { color: var(--gold-soft); }
.faq-item.open .chev { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  padding: 0 6px 24px;
  color: var(--cream-dim);
  font-size: 18.75px;
  line-height: 1.85;
}

/* ── Footer ─────────────────────────────────────────────────── */
footer.site-foot {
  border-top: 1px solid var(--hairline);
  padding: 46px 0;
}

.site-foot .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-foot strong { font-family: "Cinzel", serif; color: var(--gold-soft); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; }

.site-foot small { color: var(--faint); font-size: 12.5px; }

/* ── Responsivo ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-media { max-width: 460px; margin: 0 auto; }
  .hero-float { left: -8px; }
  .audience { grid-template-columns: 1fr; }
  .audience .glass.no { transform: none; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .title { font-size: 34px; }
  .title.lg { font-size: 38px; }
  .guarantee-card { grid-template-columns: 1fr; text-align: center; padding: 50px 30px; }
  .guarantee-card h2 { text-align: center; }
  .guarantee-card .eyebrow { justify-content: center; }
  .guarantee-card p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .title, .title.lg { font-size: 30px; }
  .hero { padding: 40px 0 90px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 18px; }
  .hero .btn-gold { width: 100%; }
  .btn-gold { padding: 16px 26px; }
  .grid-3 { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .math-card { padding: 30px 24px; }
  .price-table, .offer-card { padding: 28px 20px; }
  .big-price { font-size: 46px; }
  .site-nav .brand small { display: none; }
  .site-nav .btn-gold { padding: 9px 16px; font-size: 10.5px; }
  .timeline::before { left: 30px; }
  .step { display: flex; gap: 22px; align-items: flex-start; }
  .step .txt { text-align: left; padding: 2px 0 0 !important; order: 2; flex: 1; }
  .step .badge { order: 1; flex: 0 0 auto; width: 60px; height: 60px; }
  .step:nth-child(even) .txt { padding-left: 0; }
  .final-cta h2 { font-size: 27px; }
  .seal { width: 190px; height: 190px; }
  .site-foot .inner { flex-direction: column; text-align: center; }
  .hero-float { bottom: 16px; left: 10px; }
}
