:root {
  --cherry: #A11229;
  --cherry-deep: #740B1C;
  --cherry-dark: #4E0713;
  --rose: #E8A7B8;
  --rose-soft: #FBE9EE;
  --blush: #F6DDE4;
  --gold: #B08D57;
  --gold-soft: #E7D6BC;
  --ink: #1B1416;
  --gray: #6B6166;
  --cream: #FBF6F2;
  --white: #ffffff;
  --line: #EADFE3;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px -24px rgba(116, 11, 28, 0.35);
  --container: 1160px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

.kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--cherry-deep); }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { color: #4a4145; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 16px 34px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  background: var(--cherry);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(161, 18, 41, 0.7);
}
.btn:hover { transform: translateY(-2px); background: var(--cherry-deep); box-shadow: 0 20px 40px -14px rgba(116, 11, 28, 0.75); }
.btn--gold { background: var(--gold); box-shadow: 0 14px 30px -12px rgba(176, 141, 87, 0.7); }
.btn--gold:hover { background: #987844; }
.btn--ghost { background: transparent; color: var(--cherry-deep); border: 1.5px solid var(--cherry); box-shadow: none; }
.btn--ghost:hover { background: var(--rose-soft); }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { font-family: var(--font-display); font-size: 1.15rem; color: var(--cherry-deep); font-weight: 600; }
.brand span { color: var(--gold); font-family: var(--font-body); font-size: 0.65rem; letter-spacing: .22em; text-transform: uppercase; display: block; font-weight: 600; }
.topbar .btn { padding: 11px 22px; font-size: 0.85rem; }

/* ---------- Hero ---------- */
.hero { padding: clamp(40px, 7vw, 90px) 0 clamp(50px, 7vw, 90px); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -160px; right: -180px; width: 560px; height: 560px;
  background: radial-gradient(circle, var(--blush) 0%, rgba(251, 233, 238, 0) 70%); border-radius: 50%;
}
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero__text h1 { margin: 16px 0 20px; }
.hero__text h1 em { font-style: italic; color: var(--cherry); }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: #4a4145; margin-bottom: 26px; max-width: 34rem; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 60px; padding: 8px 16px; font-size: 0.82rem; font-weight: 500; color: var(--cherry-deep); }
.chip b { color: var(--cherry); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note { font-size: 0.8rem; color: var(--gray); margin-top: 14px; }
.hero__media { position: relative; }
.hero__photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 8px solid #fff;
}
.hero__badge {
  position: absolute; bottom: -18px; left: -14px; background: var(--cherry-deep); color: #fff;
  border-radius: var(--radius); padding: 16px 22px; box-shadow: var(--shadow); max-width: 220px;
}
.hero__badge b { font-family: var(--font-display); font-size: 1.5rem; display: block; line-height: 1; }
.hero__badge span { font-size: 0.75rem; color: var(--rose); }

/* ---------- Faixa ---------- */
.band { background: var(--cherry-deep); color: #fff; padding: 26px 0; }
.band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.band__item b { font-family: var(--font-display); font-size: 1.7rem; display: block; }
.band__item span { font-size: 0.78rem; color: var(--rose); letter-spacing: .04em; }

/* ---------- Seções ---------- */
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section--soft { background: linear-gradient(180deg, var(--cream) 0%, var(--rose-soft) 100%); }
.section--cream { background: var(--cream); }
.section__head { max-width: 640px; margin-bottom: 48px; }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head p { margin-top: 14px; font-size: 1.05rem; }

/* Dobra 2 - cards */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__num {
  font-family: var(--font-display); font-size: 1.1rem; color: #fff; background: var(--cherry);
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.95rem; }

/* Includes */
.includes { background: #fff; border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 52px); box-shadow: var(--shadow); }
.includes__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 34px; margin-top: 24px; list-style: none; }
.includes__grid li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; padding: 10px 0; border-bottom: 1px solid var(--line); }
.includes__grid li svg { flex: 0 0 22px; margin-top: 3px; }

/* Prova social */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--cherry); border-radius: var(--radius); padding: 26px; }
.testimonial p { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--cherry-deep); }
.testimonial .who { margin-top: 14px; font-family: var(--font-body); font-style: normal; font-size: 0.82rem; color: var(--gray); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.gallery img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

/* Dobra 3 - bio */
.bio { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.bio__photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.bio__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0; }
.bio__fact { background: var(--rose-soft); border-radius: var(--radius); padding: 18px; }
.bio__fact b { font-family: var(--font-display); font-size: 1.6rem; color: var(--cherry); display: block; line-height: 1; }
.bio__fact span { font-size: 0.8rem; color: var(--gray); }

/* ---------- Formulário ---------- */
.capture { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.capture::after {
  content: ""; position: absolute; bottom: -140px; left: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(161,18,41,.55) 0%, rgba(27,20,22,0) 70%); border-radius: 50%;
}
.capture__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.capture h2 { color: #fff; }
.capture .kicker { color: var(--rose); }
.capture p { color: #E9DDE0; }
.capture__list { list-style: none; margin-top: 22px; }
.capture__list li { display: flex; gap: 10px; margin-bottom: 12px; color: #F3E5E8; font-size: 0.95rem; }
.capture__list li::before { content: "✓"; color: var(--rose); font-weight: 700; }

.form-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(26px, 3.5vw, 42px); box-shadow: var(--shadow); color: var(--ink); }
.form-card h3 { color: var(--cherry-deep); margin-bottom: 6px; }
.form-card > p { font-size: 0.9rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--cherry-deep); margin-bottom: 6px; }
.field input {
  width: 100%; padding: 15px 18px; border: 1.5px solid var(--line); border-radius: 14px;
  font-family: var(--font-body); font-size: 1rem; background: var(--cream); color: var(--ink); transition: border .2s ease;
}
.field input:focus { outline: none; border-color: var(--cherry); background: #fff; }
.form-card .btn { margin-top: 8px; }
.form-card .fine { font-size: 0.76rem; color: var(--gray); text-align: center; margin-top: 14px; }
.form-card .err { color: var(--cherry); font-size: 0.8rem; margin-top: 10px; display: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 22px; margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--cherry-deep); padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--gold); }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 16px; font-size: 0.95rem; }

/* ---------- Footer ---------- */
.footer { background: var(--cherry-deep); color: var(--rose); padding: 44px 0; text-align: center; font-size: 0.85rem; }
.footer strong { color: #fff; font-family: var(--font-display); font-size: 1.1rem; display: block; margin-bottom: 8px; }

/* ---------- WhatsApp float ---------- */
.whats-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px -8px rgba(0,0,0,.4);
  transition: transform .2s ease;
}
.whats-float:hover { transform: scale(1.08); }
.whats-float svg { width: 30px; height: 30px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Página de obrigado ---------- */
.thanks { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 0; }
.thanks__inner { max-width: 620px; }
.thanks__icon { width: 84px; height: 84px; border-radius: 50%; background: var(--rose-soft); display: flex; align-items: center; justify-content: center; margin: 0 auto 26px; }
.thanks__icon svg { width: 42px; height: 42px; }
.thanks h1 { font-size: clamp(2rem, 4.4vw, 2.9rem); margin-bottom: 16px; }
.thanks p { font-size: 1.08rem; margin-bottom: 30px; }
.thanks .steps { text-align: left; background: #fff; border-radius: var(--radius); padding: 26px 30px; margin: 30px 0; border: 1px solid var(--line); }
.thanks .steps li { margin-bottom: 12px; color: #4a4145; }

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
  .hero__grid, .bio, .capture__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 460px; }
  .band__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .cards, .proof-grid, .includes__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .bio__facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .topbar .brand span { display: none; }
  .btn { padding: 15px 26px; font-size: 0.92rem; width: 100%; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .gallery { grid-template-columns: 1fr; }
  .band__grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Consentimento LGPD ---------- */
.consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.78rem; color: var(--gray); margin: 4px 0 8px; line-height: 1.5;
}
.consent input { margin-top: 3px; width: 16px; height: 16px; flex: 0 0 16px; accent-color: var(--cherry); }
.consent a { color: var(--cherry); text-decoration: underline; }

/* ---------- CTA fixo no mobile ---------- */
.sticky-cta { display: none; }
@media (max-width: 900px) {
  .sticky-cta {
    display: flex; align-items: center; justify-content: center;
    position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 55;
    background: var(--cherry); color: #fff; font-weight: 600; font-size: 0.98rem;
    padding: 15px; border-radius: 60px;
    box-shadow: 0 16px 34px -10px rgba(0, 0, 0, 0.45);
  }
  .whats-float { bottom: 80px; }
}
