
/* =========================================================
   DESIGN TOKENS — EDITORIAL PHOTOGRAPHY
   ========================================================= */
:root {
  --ink: #0E0E0E;
  --ink-soft: #1A1A1A;
  --ink-line: rgba(255,255,255,0.10);

  --cream: #F5EFE4;
  --cream-soft: #FAF6EE;
  --paper: #FFFFFF;

  --gold: #C8A465;
  --gold-dark: #A8884F;
  --gold-soft: #E8D4A8;
  --copper: #B87333;

  --text: #141414;
  --text-soft: #555;
  --line: rgba(14,14,14,0.10);

  --red: #C8313F;
  --green: #4A8B5F;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 14px 38px rgba(200,164,101,0.28);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  /* Builderall & Theme Semantic Aliases */
  --dark: var(--ink);
  --white: var(--paper);
  --text-dark: var(--text);
  --text-light: #F5EFE4;
  --muted: var(--text-soft);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
section { padding: 64px 0; }
@media (min-width: 768px) { section { padding: 96px 0; } }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .section-title { font-size: 56px; margin-bottom: 24px; }
}
.section-lead {
  text-align: center;
  font-size: 18px;
  color: var(--text-soft);
  max-width: 720px;
  margin: 0 auto 48px;
}

/* Editorial caption — small uppercase tag */
.caption {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.caption::before, .caption::after {
  content: "—";
  display: inline-block;
  margin: 0 8px;
  opacity: .6;
}

/* =========================================================
   PILLS & BADGES
   ========================================================= */
.pill {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1.2;
}
.pill--ink   { background: var(--ink);   color: var(--gold); }
.pill--gold  { background: var(--gold);  color: var(--ink); }
.pill--cream { background: var(--cream); color: var(--ink); border: 1px solid var(--line); }
.pill--red   { background: var(--red);   color: #fff; }
.pill--green { background: var(--green); color: #fff; }
.pill--lg    { padding: 14px 32px; font-size: 15px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  padding: 18px 44px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
@media (min-width: 768px) {
  .btn { font-size: 20px; padding: 22px 56px; }
}
.btn:hover { transform: translateY(-2px); background: var(--gold-soft); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0); }
.btn--dark { background: var(--ink); color: var(--gold); box-shadow: var(--shadow-md); }
.btn--dark:hover { background: var(--ink-soft); }
.btn--full { width: 100%; }
.btn--pulse { animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

.cta-note {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--text-soft);
}
.cta-note strong { font-weight: 700; color: var(--ink); }

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  background: var(--ink);
  color: var(--gold);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 16px;
  border-bottom: 1px solid var(--ink-line);
}
.topbar span.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 10px;
  vertical-align: middle;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(200,164,101,0.10), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(200,164,101,0.06), transparent 50%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero__caption { color: var(--gold); margin-bottom: 22px; }
.hero__title {
  font-size: 38px;
  color: var(--cream);
  margin: 0 auto 16px;
  max-width: 820px;
  line-height: 1.05;
}
@media (min-width: 768px) { .hero__title { font-size: 64px; } }
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__badge { margin: 24px 0; }
.hero__mockup {
  margin: 0 auto 28px;
  max-width: min(560px, 100%);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}
.hero__subtitle {
  font-size: 17px;
  color: rgba(245,239,228,0.85);
  max-width: 720px;
  margin: 0 auto 36px;
  font-weight: 400;
  line-height: 1.6;
}
.hero__subtitle strong { color: var(--cream); font-weight: 600; }
.hero__list {
  max-width: 560px;
  margin: 0 auto 36px;
  text-align: left;
}
.hero__list li {
  padding: 14px 0 14px 38px;
  border-top: 1px solid var(--ink-line);
  position: relative;
  font-size: 15px;
  color: rgba(245,239,228,0.92);
  font-weight: 500;
  letter-spacing: 0.2px;
}
.hero__list li:first-child { border-top: none; }
.hero__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 14px;
  width: 24px; height: 24px; line-height: 24px;
  background: var(--gold); color: var(--ink);
  border-radius: 50%;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}
.hero .cta-note { color: rgba(245,239,228,0.7); }
.hero .cta-note strong { color: var(--cream); }

/* =========================================================
   PAIN — Identificação da Dor
   ========================================================= */
.pain { background: var(--cream); }
.pain__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.pain .caption { color: var(--copper); }
.pain h2 { margin-bottom: 32px; }
.pain h2 em { font-style: italic; color: var(--copper); }
.pain__text {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  max-width: 620px;
  margin: 0 auto;
}
.pain__text p { margin-bottom: 18px; }
.pain__text p.spaced { font-size: 16px; color: var(--text-soft); }
.pain__quote {
  margin: 40px auto;
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  text-align: left;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  max-width: 580px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
  .pain__quote { font-size: 26px; }
}
.pain__truth {
  margin-top: 40px;
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.6;
}
.pain__truth strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--copper);
}

/* =========================================================
   BENEFITS — Ganhos claros
   ========================================================= */
.benefits {
  background: var(--ink);
  color: var(--cream);
}
.benefits .caption { color: var(--gold); }
.benefits .section-title { color: var(--cream); }
.benefits .section-title em { font-style: italic; color: var(--gold); }
.benefits .section-lead { color: rgba(245,239,228,0.75); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
}
.benefit {
  background: var(--ink);
  padding: 32px 24px;
  text-align: center;
}
.benefit__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.benefit__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.25;
}
.benefit__desc {
  font-size: 14px;
  color: rgba(245,239,228,0.7);
  line-height: 1.6;
}

/* =========================================================
   PROVA — Testimonials
   ========================================================= */
.testimonials { background: var(--cream); }
.testimonials .caption { color: var(--copper); }
.testimonials .section-title em { font-style: italic; color: var(--copper); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.testimonial {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  border: 1px solid var(--line);
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 20px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 72px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}
.testimonial__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
  line-height: 1;
}
.testimonial__quote {
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cream);
  border: 2px solid var(--gold);
}
.testimonial__name {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
}
.testimonial__role {
  display: block;
  color: var(--text-soft);
  font-size: 12px;
  margin-top: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.testimonials__cta { text-align: center; }

/* =========================================================
   TANGIBILIDADE
   ========================================================= */
.receive { background: var(--cream-soft); }
.receive .caption { color: var(--gold-dark); }
.receive .section-title em { font-style: italic; color: var(--gold-dark); }
.receive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .receive-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.receive-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.receive-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-dark);
  opacity: 0.6;
}
.receive-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--ink);
  padding-right: 50px;
}
.receive-card p {
  color: var(--text-soft);
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}
.receive-card p::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

/* =========================================================
   PEEK INSIDE
   ========================================================= */
.peek { background: var(--ink); color: var(--cream); overflow: hidden; padding: 64px 0; }
@media (min-width: 768px) { .peek { padding: 96px 0; } }
.peek .caption { color: var(--gold); }
.peek .section-title { color: var(--cream); margin-bottom: 16px; }
.peek .section-title em { font-style: italic; color: var(--gold); }
.peek .section-lead { color: rgba(245,239,228,0.65); margin-bottom: 40px; }

.peek__viewport {
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.peek__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  animation: peek-scroll 70s linear infinite;
  will-change: transform;
}

.peek__viewport:hover .peek__track,
.peek__viewport:focus-within .peek__track {
  animation-play-state: paused;
}

.peek__slide {
  flex-shrink: 0;
  width: 240px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream);
  position: relative;
  border: 1px solid rgba(200,164,101,0.2);
}
.peek__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes peek-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.peek__viewport + .peek__viewport { margin-top: 20px; }
.peek__track--reverse { animation-direction: reverse; }
@media (min-width: 768px) {
  .peek__viewport + .peek__viewport { margin-top: 28px; }
}

.peek__footer {
  text-align: center;
  font-size: 16px;
  color: rgba(245,239,228,0.65);
  margin-top: 40px;
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .peek__track { gap: 28px; animation-duration: 90s; }
  .peek__slide { width: 320px; }
  .peek__footer { font-size: 18px; margin-top: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  .peek__track { animation: none; }
  .peek__viewport { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .peek__slide { scroll-snap-align: start; }
}

/* =========================================================
   EXPLICAÇÃO
   ========================================================= */
.explain { background: var(--cream); }
.explain__intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.explain__intro p {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: 14px;
  line-height: 1.7;
}
.explain__intro p.highlight {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  margin-top: 24px;
  font-weight: 600;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 980px;
  margin: 0 auto 56px;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}
.step {
  text-align: center;
  padding: 0 12px;
}
.step__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 700;
}
.step__title {
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 2.5px;
  margin-bottom: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.step__text {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* =========================================================
   BIG CTA
   ========================================================= */
.bigcta { background: var(--ink); color: var(--cream); }
.bigcta .caption { color: var(--gold); }
.bigcta .section-title { color: var(--cream); margin-bottom: 56px; }
.bigcta .section-title em { font-style: italic; color: var(--gold); }
.bigcta__card {
  background: linear-gradient(180deg, rgba(200,164,101,0.06) 0%, transparent 100%);
  border: 1px solid rgba(200,164,101,0.25);
  border-radius: var(--radius-lg);
  padding: 56px 24px 48px;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) { .bigcta__card { padding: 64px 48px 56px; } }
.bigcta__badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.bigcta__card h3 {
  color: var(--cream);
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 1.15;
}
@media (min-width: 768px) { .bigcta__card h3 { font-size: 40px; } }
.bigcta__card h3 em { font-style: italic; color: var(--gold); }
.bigcta__card p {
  color: rgba(245,239,228,0.8);
  font-size: 16px;
  margin-bottom: 22px;
  line-height: 1.65;
}
.bigcta__list {
  text-align: left;
  max-width: 520px;
  margin: 30px auto;
}
.bigcta__list li {
  padding: 14px 0 14px 40px;
  position: relative;
  color: rgba(245,239,228,0.92);
  font-size: 15px;
  border-bottom: 1px solid var(--ink-line);
}
.bigcta__list li:last-child { border-bottom: none; }
.bigcta__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 14px;
  width: 24px; height: 24px; line-height: 24px;
  background: var(--gold); color: var(--ink);
  border-radius: 50%;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}
.bigcta__urgency {
  margin: 32px 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}
@media (min-width: 768px) { .bigcta__urgency { font-size: 22px; } }
.bigcta .cta-note { color: rgba(245,239,228,0.65); }
.bigcta .cta-note strong { color: var(--cream); }

/* =========================================================
   BÔNUS
   ========================================================= */
.bonus { background: var(--cream); }
.bonus__intro {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 24px;
  color: var(--text-soft);
  margin-bottom: 14px;
  font-weight: 500;
}
@media (min-width: 768px) { .bonus__intro { font-size: 30px; } }
.bonus__header {
  text-align: center;
  margin-bottom: 48px;
}
.bonus__header .pill {
  font-size: 14px;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--gold);
}
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .bonus-grid { grid-template-columns: repeat(3, 1fr); }
}
.bonus-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.bonus-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.bonus-card__img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 4 / 3;
}
.bonus-card__img img { width: 100%; height: 100%; object-fit: cover; }
.bonus-card h3 {
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
}
.bonus-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}
.bonus-card__value {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 12px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bonus-card__value del {
  opacity: 0.55;
  font-weight: 400;
}
.bonus-card__value strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================================
   GARANTIA
   ========================================================= */
.guarantee { background: var(--cream-soft); }
.guarantee__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) {
  .guarantee__card {
    grid-template-columns: 220px 1fr;
    text-align: left;
    gap: 40px;
    padding: 52px;
  }
}
.guarantee__seal {
  max-width: 200px;
  margin: 0 auto;
}
.guarantee__card .caption { color: var(--copper); }
.guarantee__card h2 {
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.15;
}
.guarantee__card h2 em { font-style: italic; color: var(--copper); }
.guarantee__card p {
  color: var(--text-soft);
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.65;
}
.guarantee__card strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   PRICING / OFERTA
   ========================================================= */
.pricing { background: var(--ink); color: var(--cream); }
.pricing .caption { color: var(--gold); }
.pricing__header { text-align: center; margin-bottom: 48px; }
.pricing__header .pill { margin-bottom: 24px; }
.pricing__title {
  font-size: 36px;
  color: var(--cream);
}
@media (min-width: 768px) { .pricing__title { font-size: 52px; } }
.pricing__title em { font-style: italic; color: var(--gold); }

.pricing-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .pricing-wrapper {
    flex-direction: row;
    gap: 28px;
    align-items: stretch;
  }
  .pricing-wrapper > .plan { flex: 1; min-width: 0; }
}

.plan {
  background: var(--paper);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.plan__title {
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 8px;
}
.plan__subtitle {
  color: var(--text-soft);
  font-size: 13px;
  margin-bottom: 18px;
  min-height: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.plan__mockup {
  max-width: 360px;
  width: 100%;
  margin: 0 auto 24px;
}
@media (min-width: 880px) {
  .plan__mockup { max-width: 320px; }
}
.plan__includes-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-soft);
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
.plan__includes {
  text-align: left;
  margin-bottom: 28px;
}
.plan__includes li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}
.plan__includes li:last-child { border-bottom: none; }
.plan__includes li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 12px;
  width: 22px; height: 22px; line-height: 22px;
  background: var(--gold); color: var(--ink);
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}
.plan__includes li b { font-weight: 700; }

.plan__by {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.plan__by del { opacity: .55; }
.plan__price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -2px;
}
@media (min-width: 768px) { .plan__price { font-size: 76px; } }
.plan__installments {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.plan__savings {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.plan__savings b { font-weight: 800; color: var(--copper); }

.plan-spacer { flex-grow: 1; }

/* PREMIUM VARIANT */
.plan--premium {
  background: var(--ink-soft);
  color: var(--cream);
  position: relative;
  border: 1px solid rgba(200,164,101,0.3);
}
.plan--premium .plan__title { color: var(--cream); }
.plan--premium .plan__subtitle { color: var(--gold); }
.plan--premium .plan__includes-title { color: var(--gold); }
.plan--premium .plan__by { color: rgba(245,239,228,0.7); }
.plan--premium .plan__installments { color: rgba(245,239,228,0.7); }
.plan--premium .plan__price { color: var(--gold); }
.plan--premium .plan__includes li {
  color: rgba(245,239,228,0.92);
  border-bottom: 1px solid var(--ink-line);
}
.plan--premium .plan__includes li::before {
  background: var(--gold); color: var(--ink);
}
.plan--premium .plan__savings {
  background: rgba(200,164,101,0.12);
  border-color: rgba(200,164,101,0.25);
  color: var(--gold);
}
.plan--premium .plan__savings b { color: var(--gold); }
.plan--premium .plan__badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.badge-choice{
  display:inline-block;
  background:#c9a35d;
  color:#111;
  font-weight:800;
  padding:4px 10px;
  border-radius:999px;
  margin-right:6px;
}

.hint-arrow{
  display:inline-block;
  margin-left:6px;
  color:#c9a35d;
  font-size:18px;
  font-weight:700;
  animation:bounceDown 1.2s infinite;
}

@keyframes bounceDown{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(4px);
  }
}

/* =========================================================
   QUEM SOMOS
   ========================================================= */
.about { background: var(--ink); color: var(--cream); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .about__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
  }
}
.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200,164,101,0.2);
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.about__image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(200,164,101,0.15);
  pointer-events: none;
}
.about__image img { display: block; width: 100%; height: auto; }
.about__content { text-align: center; }
@media (min-width: 880px) {
  .about__content { text-align: left; }
}
.about__content .caption { color: var(--gold); }
.about__content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px;
  color: var(--cream);
  margin-bottom: 22px;
  line-height: 1.1;
}
@media (min-width: 768px) { .about__content h2 { font-size: 52px; } }
.about__content h2 em { font-style: italic; color: var(--gold); }
.about__content p {
  color: rgba(245,239,228,0.82);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
}
.about__content p strong { color: var(--gold); font-weight: 700; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-line);
}
.about__stat { text-align: center; }
@media (min-width: 880px) {
  .about__stat { text-align: left; }
  .about__stat:nth-child(2) { text-align: center; }
  .about__stat:last-child   { text-align: right; }
}
.about__stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 34px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
@media (min-width: 768px) { .about__stat-num { font-size: 42px; } }
.about__stat-label {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(245,239,228,0.6);
  font-weight: 600;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--cream); }
.faq .caption { color: var(--gold-dark); }
.faq .section-title em { font-style: italic; color: var(--gold-dark); }
.faq-list {
  max-width: 760px;
  margin: 0 auto 40px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 26px;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body {
  padding: 0 24px 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}
.faq__cta { text-align: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: rgba(245,239,228,0.55);
  padding: 56px 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.65;
  letter-spacing: 0.3px;
}
.footer .container > p + p { margin-top: 12px; }
.footer h3 {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 28px;
}
.footer__links {
  margin: 20px 0 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 4px;
  align-items: center;
}
.footer__links a {
  color: rgba(245,239,228,0.65);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .15s;
}
.footer__links a:hover { color: var(--gold); }
.footer__sep {
  color: rgba(245,239,228,0.25);
  font-size: 12px;
  padding: 0 4px;
}

.pricing__hint{
  text-align:center;
  margin-top:16px;
  color:#8b8b8b;
  font-size:14px;
}

.badge-choice{
  display:inline-block;
  background:#c9a35d;
  color:#111;
  font-weight:800;
  padding:4px 10px;
  border-radius:999px;
  margin-right:6px;
}

/* =========================================================
   SMALL MOBILE OPTIMIZATIONS
   ========================================================= */
@media (max-width: 480px) {
  body { font-size: 16px; }
  .section-title { font-size: 30px; }
  .hero__title { font-size: 32px; }
  .pricing__title { font-size: 28px; }
  .bigcta__card h3 { font-size: 24px; }
  .btn { font-size: 15px; padding: 16px 28px; letter-spacing: 0.8px; }
  .plan__price { font-size: 56px; }
  .testimonial { padding: 26px 22px; }
  .pain__quote { font-size: 19px; padding: 22px 24px; }
  .guarantee__card { padding: 32px 22px; }
  .step__num { font-size: 52px; }
}
