/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Cores */
  --background: #f5f3ee;
  --foreground: #2f2504;
  --card: #ffffff;
  --card-foreground: #2f2504;
  --primary: #2f2504;
  --primary-foreground: #f5f3ee;
  --secondary: #efefef;
  --secondary-foreground: #2f2504;
  --muted: #efefef;
  --muted-foreground: #79786b;
  --accent: #dba958;
  --accent-foreground: #2f2504;
  --border: #d9d5cb;
  --input: #cfcabe;
  --ring: #dba958;
  --gold: #dba958;
  --gold-foreground: #2f2504;
  --dark: #2f2504;
  --brown: #5d5b4c;
  --sand: #d9d5cb;
  --stone: #938f83;
  --destructive: #c0392b;
  --bad: #a8402f;

  /* Raio de borda */
  --radius: 1rem;
  --radius-sm: 0.6rem;
  --radius-md: 0.8rem;
  --radius-lg: 1rem;
  --radius-xl: 1.4rem;
  --radius-2xl: 1.8rem;
  --radius-3xl: 2.2rem;
  --radius-4xl: 2.6rem;

  /* Tipografia */
  --font-sans: 'Open Sans', ui-sans-serif, system-ui, sans-serif;
  --font-heading: 'Raleway', ui-sans-serif, system-ui, sans-serif;

  /* Sombras */
  --shadow-soft: 0 8px 30px -12px rgba(47, 37, 4, 0.12);
  --shadow-soft-lg: 0 24px 60px -20px rgba(47, 37, 4, 0.18);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga" 1, "calt" 1;
  line-height: 1.5;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
svg { display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
}

.container {
  max-width: 72rem; /* 1152px */
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
}
.container--lg { max-width: 56rem; }
.container--sm { max-width: 48rem; }

.text-gold { color: var(--gold); }
.muted { color: var(--muted-foreground); }
.muted-sm { color: var(--muted-foreground); font-size: 0.875rem; }
.strong { font-weight: 600; color: var(--foreground); }
.block { display: block; }

.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-soft-lg { box-shadow: var(--shadow-soft-lg); }

/* ==========================================================================
   BUTTONS (CTA)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-xl);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .btn { font-size: 1rem; }
}
.btn--gold {
  background-color: var(--gold);
  color: var(--gold-foreground);
  box-shadow: var(--shadow-soft);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-lg);
  filter: brightness(1.03);
}
.btn--sm { padding: 0.625rem 1.5rem; font-size: 0.875rem; white-space: normal; }
.btn--full { width: 100%; padding-top: 1rem; padding-bottom: 1rem; font-size: 1rem; }
.btn--block-mobile { width: 100%; }
@media (min-width: 640px) {
  .btn--block-mobile { width: auto; }
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--gold);
}
.btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.round-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--foreground);
  box-shadow: var(--shadow-soft);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.3s ease;
}
.round-btn:hover { background-color: var(--secondary); }
.footer__social .round-btn { box-shadow: none; }
.footer__social .round-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
/* Por padrão (sem JS, ou JS bloqueado), o conteúdo já fica visível.
   A classe "has-js" só é adicionada pelo próprio script.js ao executar —
   se ele não rodar (bloqueador, erro de rede etc.), o texto nunca fica
   preso invisível. Importante: o seletor abaixo usa só classes (sem
   prefixo de tipo "html"), com a mesma especificidade de
   ".reveal-up.is-visible" logo abaixo — assim a regra "visível" sempre
   consegue vencer a "escondida" quando o JavaScript adiciona a classe. */
.reveal-up {
  transition: opacity 0.6s cubic-bezier(0.21, 0.47, 0.32, 0.98),
              transform 0.6s cubic-bezier(0.21, 0.47, 0.32, 0.98);
}
.has-js .reveal-up {
  opacity: 0;
  transform: translateY(24px);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }
.reveal-up[data-delay="0"] { transition-delay: 0s; }
.reveal-up[data-delay="1"] { transition-delay: 0.08s; }
.reveal-up[data-delay="2"] { transition-delay: 0.16s; }
.reveal-up[data-delay="3"] { transition-delay: 0.24s; }
.reveal-up[data-delay="4"] { transition-delay: 0.32s; }
.reveal-up[data-delay="5"] { transition-delay: 0.4s; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  background-color: transparent;
}
.navbar.is-scrolled {
  border-bottom-color: rgba(217, 213, 203, 0.7);
  background-color: rgba(245, 243, 238, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}
.navbar__inner {
  max-width: 72rem;
  margin-inline: auto;
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .navbar__inner { height: 5rem; padding-inline: 2rem; }
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--foreground);
}
.navbar__logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__logo-badge img {
  display: block;
  max-height: 2rem;
  max-width: 11rem;
  width: auto;
  height: auto;
}
@media (min-width: 768px) {
  .navbar__logo-badge img { max-height: 2.35rem; max-width: 13rem; }
}
.navbar__links { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 1024px) { .navbar__links { display: flex; } }
.navbar__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}
.navbar__links a:hover { color: var(--foreground); }
.navbar__cta { display: none; }
@media (min-width: 1024px) { .navbar__cta { display: block; } }
.navbar__toggle {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--foreground);
  transition: background-color 0.2s ease;
}
.navbar__toggle:hover { background-color: var(--secondary); }
@media (min-width: 1024px) { .navbar__toggle { display: none; } }
.navbar__mobile {
  display: none;
  border-top: 1px solid rgba(217, 213, 203, 0.7);
  background-color: rgba(245, 243, 238, 0.95);
  backdrop-filter: blur(8px);
}
.navbar__mobile.is-open { display: block; }
@media (min-width: 1024px) { .navbar__mobile { display: none !important; } }
.navbar__mobile-inner {
  max-width: 72rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
}
.navbar__mobile-inner a {
  border-radius: var(--radius-md);
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  transition: background-color 0.2s ease;
}
.navbar__mobile-inner a:hover { background-color: var(--secondary); }
.navbar__mobile-cta { margin-top: 0.5rem; width: 100%; text-align: center; }

.main { padding-bottom: 4rem; }
@media (min-width: 768px) { .main { padding-bottom: 0; } }

/* ==========================================================================
   SECTION HEADING (compartilhado)
   ========================================================================== */
.section-heading {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.eyebrow--light { color: var(--gold); }
.section-heading h2 {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--foreground);
}
@media (min-width: 768px) { .section-heading h2 { font-size: 2.25rem; } }
.section-heading p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  text-wrap: pretty;
  color: var(--muted-foreground);
}
@media (min-width: 768px) { .section-heading p { font-size: 1.125rem; } }

/* ==========================================================================
   1. HERO
   ========================================================================== */
.hero { position: relative; overflow: hidden; padding-top: 7rem; padding-bottom: 3.5rem; }
@media (min-width: 768px) { .hero { padding-top: 9rem; padding-bottom: 5rem; } }

.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__blob { position: absolute; border-radius: 9999px; filter: blur(64px); }
.hero__blob--gold { top: -8rem; right: -6rem; height: 24rem; width: 24rem; background-color: rgba(219, 169, 88, 0.1); }
.hero__blob--brown { top: 10rem; left: -8rem; height: 20rem; width: 20rem; background-color: rgba(93, 91, 76, 0.1); }

.hero__grid {
  max-width: 72rem;
  margin-inline: auto;
  display: grid;
  align-items: center;
  gap: 3rem;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) { .hero__grid { padding-inline: 2rem; } }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; } }

.hero__copy { text-align: center; }
@media (min-width: 1024px) { .hero__copy { text-align: left; } }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.6);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--brown);
  text-align: left;
}
.hero__title {
  margin-top: 1.5rem;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--foreground);
}
@media (min-width: 768px) { .hero__title { font-size: 2.875rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3.375rem; } }

.hero__desc {
  margin: 1.5rem auto 0;
  max-width: 38rem;
  text-wrap: pretty;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
@media (min-width: 768px) { .hero__desc { font-size: 1.125rem; } }
@media (min-width: 1024px) { .hero__desc { margin-inline: 0; } }

.hero__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .hero__actions { align-items: flex-start; } }

.hero__media { position: relative; margin-inline: auto; width: 100%; max-width: 26rem; }
@media (min-width: 1024px) { .hero__media { max-width: none; } }
.hero__img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: var(--shadow-soft-lg);
  aspect-ratio: 720 / 860;
}
.hero__img-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   2. DOR + VSL
   ========================================================================== */
.pain { padding-block: 4.5rem; }
@media (min-width: 768px) { .pain { padding-block: 6rem; } }

.vsl { margin-top: 3rem; }
.vsl__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--primary) 0%, #4a3d10 100%);
  box-shadow: var(--shadow-soft-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vsl__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vsl__play {
  display: flex;
  height: 4.5rem;
  width: 4.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--gold);
  color: var(--gold-foreground);
  box-shadow: var(--shadow-soft-lg);
  transition: transform 0.3s ease, filter 0.3s ease;
}
@media (min-width: 768px) {
  .vsl__play { height: 5.5rem; width: 5.5rem; }
}
.vsl__play:hover { transform: scale(1.06); filter: brightness(1.05); }
.vsl__play-icon svg { margin-left: 4px; }
.vsl__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 9999px;
  background-color: rgba(245, 243, 238, 0.92);
  padding: 0.5rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--foreground);
  white-space: nowrap;
}

/* ==========================================================================
   3. PROVA SOCIAL (depoimentos em texto)
   ========================================================================== */
.testimonials {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--secondary);
  padding-block: 4.5rem;
}
@media (min-width: 768px) { .testimonials { padding-block: 6rem; } }

.testimonials__grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft-lg); }
.testimonial-card__icon { display: block; color: var(--gold); }
.testimonial-card blockquote {
  margin-top: 0.875rem;
  flex: 1;
  text-wrap: pretty;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--foreground);
}
.testimonial-card figcaption { margin-top: 1.25rem; font-size: 0.875rem; }

/* ==========================================================================
   4. MÓDULOS
   ========================================================================== */
.modules { padding-block: 4.5rem; }
@media (min-width: 768px) { .modules { padding-block: 6rem; } }

.modules__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .modules__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .modules__grid { grid-template-columns: repeat(3, 1fr); } }

.module-card {
  height: 100%;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft-lg);
  border-color: rgba(219, 169, 88, 0.4);
}
.module-card__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.module-card h3 {
  margin-top: 0.875rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--foreground);
}
.module-card p {
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ==========================================================================
   5. DIFERENCIAL (comparativo)
   ========================================================================== */
.differential {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--secondary);
  padding-block: 4.5rem;
}
@media (min-width: 768px) { .differential { padding-block: 6rem; } }

.compare {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .compare { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

.compare__col {
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.compare__col h3 {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.compare__col ul { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.compare__col li { padding-left: 0; line-height: 1.55; }

.compare__col--bad {
  background-color: var(--card);
  border: 1px solid var(--border);
  opacity: 0.9;
}
.compare__col--bad h3 { color: var(--muted-foreground); }
.compare__col--bad li { color: var(--muted-foreground); text-decoration: line-through; text-decoration-color: rgba(121, 120, 107, 0.4); }

.compare__col--good {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: 1px solid var(--primary);
}
.compare__col--good h3 { color: var(--gold); }
.compare__col--good li { color: rgba(245, 243, 238, 0.9); font-weight: 500; }

.compare__icon {
  display: flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}
.compare__icon--bad { background-color: rgba(168, 64, 47, 0.12); color: var(--bad); }
.compare__icon--good { background-color: var(--gold); color: var(--gold-foreground); }

/* ==========================================================================
   6. PARA QUEM É
   ========================================================================== */
.audience { padding-block: 4.5rem; }
@media (min-width: 768px) { .audience { padding-block: 6rem; } }

.audience__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .audience__grid { grid-template-columns: repeat(3, 1fr); } }

.audience-card {
  height: 100%;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.audience-card__icon {
  display: flex;
  height: 3rem;
  width: 3rem;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background-color: rgba(219, 169, 88, 0.12);
  color: var(--gold);
}
.audience-card h3 {
  margin-top: 1.125rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}
.audience-card p {
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ==========================================================================
   7. BÔNUS
   ========================================================================== */
.bonus { padding-block: 4.5rem; }
@media (min-width: 768px) { .bonus { padding-block: 6rem; } }

.bonus__stack {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bonus-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.125rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bonus-card:hover { transform: translateX(4px); box-shadow: var(--shadow-soft-lg); }
.bonus-card__tag {
  position: absolute;
  top: -0.6rem;
  left: 1.5rem;
  border-radius: 9999px;
  background-color: var(--gold);
  color: var(--gold-foreground);
  padding: 0.2rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bonus-card__icon {
  display: flex;
  height: 3rem;
  width: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background-color: rgba(219, 169, 88, 0.12);
  color: var(--gold);
}
.bonus-card h3 { font-size: 1.0625rem; font-weight: 600; color: var(--foreground); }
.bonus-card p { margin-top: 0.25rem; font-size: 0.9375rem; color: var(--muted-foreground); }

/* ==========================================================================
   8. GARANTIA
   ========================================================================== */
.guarantee { padding-block: 1rem 2.5rem; }
@media (min-width: 768px) { .guarantee { padding-block: 2rem 3.5rem; } }
.guarantee__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid rgba(219, 169, 88, 0.4);
  background-color: var(--card);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .guarantee__card { padding: 3rem; } }
.guarantee__glow {
  position: absolute;
  right: -4rem;
  top: -4rem;
  height: 14rem;
  width: 14rem;
  border-radius: 9999px;
  background-color: rgba(219, 169, 88, 0.1);
  filter: blur(24px);
  pointer-events: none;
}
.guarantee__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) { .guarantee__inner { flex-direction: row; text-align: left; } }
.guarantee__icon {
  display: flex;
  height: 5rem;
  width: 5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: rgba(219, 169, 88, 0.15);
  color: var(--gold);
}
.guarantee__inner h2 { font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
@media (min-width: 768px) { .guarantee__inner h2 { font-size: 1.875rem; } }
.guarantee__inner p { margin-top: 0.75rem; text-wrap: pretty; line-height: 1.6; color: var(--muted-foreground); }
@media (min-width: 768px) { .guarantee__inner p { font-size: 1.125rem; } }

/* ==========================================================================
   9. OFERTA E PREÇO
   ========================================================================== */
.offer { padding-block: 4.5rem; }
@media (min-width: 768px) { .offer { padding-block: 6rem; } }

.offer__card {
  margin-top: 3rem;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: var(--shadow-soft-lg);
}
.offer__head {
  border-bottom: 1px solid var(--border);
  background-color: var(--primary);
  padding: 2rem;
  text-align: center;
  color: var(--primary-foreground);
}
@media (min-width: 768px) { .offer__head { padding: 2.25rem 3rem; } }
.offer__head-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.offer__price {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.offer__installments { font-size: 1.125rem; font-weight: 500; opacity: 0.85; }
.offer__amount {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
@media (min-width: 768px) { .offer__amount { font-size: 3.25rem; } }
.offer__price-sub { margin-top: 0.5rem; font-size: 0.9375rem; opacity: 0.8; }

.offer__body { padding: 2rem; }
@media (min-width: 768px) { .offer__body { padding: 2.5rem 3rem; } }
.offer__includes-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
}
.offer__list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.offer__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.55;
  color: var(--foreground);
}
.check-icon {
  display: flex;
  margin-top: 0.125rem;
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--gold);
  color: var(--gold-foreground);
}
.offer__body .btn--full { margin-top: 2rem; }
.offer__window {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bad);
}

/* ==========================================================================
   10. AUTORA (instructor)
   ========================================================================== */
.instructor {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--secondary);
  padding-block: 4.5rem;
}
@media (min-width: 768px) { .instructor { padding-block: 6rem; } }
.instructor__grid { display: grid; align-items: center; gap: 3rem; }
@media (min-width: 1024px) { .instructor__grid { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; } }

.instructor__media { position: relative; margin-inline: auto; width: 100%; max-width: 22rem; }
@media (min-width: 1024px) { .instructor__media { max-width: none; } }
.instructor__img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: var(--shadow-soft-lg);
  aspect-ratio: 640 / 780;
}
.instructor__img-frame img { width: 100%; height: 100%; object-fit: cover; }

.instructor__badge {
  display: none;
  position: absolute;
  top: -1rem;
  right: -1rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background-color: var(--gold);
  color: var(--gold-foreground);
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .instructor__badge { display: block; } }
.instructor__badge-name { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; }
.instructor__badge-role { font-size: 0.75rem; opacity: 0.8; }

.instructor__title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--foreground);
}
@media (min-width: 768px) { .instructor__title { font-size: 2.25rem; } }
.instructor__desc {
  margin-top: 1.25rem;
  text-wrap: pretty;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.instructor__desc + .instructor__desc { margin-top: 1rem; }
@media (min-width: 768px) { .instructor__desc { font-size: 1.0625rem; } }

/* ==========================================================================
   11. FAQ / ACCORDION (compartilhado)
   ========================================================================== */
.faq { padding-block: 4.5rem; }
@media (min-width: 768px) { .faq { padding-block: 6rem; } }

.accordion { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.75rem; }

.accordion__item {
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: none;
  transition: border-color 0.2s ease;
}
.accordion__item.is-open { border-color: rgba(219, 169, 88, 0.5); box-shadow: var(--shadow-soft); }

.accordion__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
}
@media (min-width: 768px) { .accordion__trigger { padding: 1.25rem 1.5rem; } }

.accordion__title {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}
@media (min-width: 768px) { .accordion__title { font-size: 1.125rem; } }

.accordion__chevron { flex-shrink: 0; color: var(--gold); transition: transform 0.3s ease; }
.accordion__item.is-open .accordion__chevron { transform: rotate(180deg); }

.accordion__panel { overflow: hidden; height: auto; transition: height 0.3s ease-in-out; }
.accordion__panel p {
  padding: 0 1.25rem 1.25rem;
  text-wrap: pretty;
  line-height: 1.65;
  color: var(--muted-foreground);
}
@media (min-width: 768px) { .accordion__panel p { padding: 0 1.5rem 1.25rem; } }

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.final-cta {
  background-color: var(--primary);
  padding-block: 4.5rem;
  color: var(--primary-foreground);
}
@media (min-width: 768px) { .final-cta { padding-block: 6rem; } }
.final-cta__inner { text-align: center; }
.final-cta__inner h2 {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}
@media (min-width: 768px) { .final-cta__inner h2 { font-size: 2.5rem; } }
.final-cta__inner > p {
  margin: 1.25rem auto 0;
  max-width: 34rem;
  text-wrap: pretty;
  line-height: 1.6;
  color: rgba(245, 243, 238, 0.75);
}
@media (min-width: 768px) { .final-cta__inner > p { font-size: 1.125rem; } }
.final-cta__action { margin-top: 2.25rem; }
.final-cta__fine { margin-top: 1.25rem; font-size: 0.875rem; color: rgba(245, 243, 238, 0.6); }
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { border-top: 1px solid var(--border); background-color: var(--background); padding-block: 3rem; }
.footer__top { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 2rem; }
@media (min-width: 768px) { .footer__top { flex-direction: row; align-items: flex-start; } }
.footer__brand { text-align: center; }
@media (min-width: 768px) { .footer__brand { text-align: left; } }
.footer__tagline { margin-top: 0.75rem; max-width: 22rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }
.footer__social { display: flex; align-items: center; gap: 0.75rem; }
.footer__social .round-btn { height: 2.5rem; width: 2.5rem; }
.footer__bottom {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; } }
.footer__nav { display: flex; align-items: center; gap: 1.5rem; }
.footer__nav a { transition: color 0.2s ease; }
.footer__nav a:hover { color: var(--foreground); }

/* ==========================================================================
   PÁGINAS LEGAIS (Política de Privacidade / Termos de Uso)
   ========================================================================== */
.legal { padding-block: 7rem 4.5rem; }
@media (min-width: 768px) { .legal { padding-block: 8.5rem 6rem; } }

.legal__back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  transition: opacity 0.2s ease;
}
.legal__back:hover { opacity: 0.75; }

.legal h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--foreground);
}
@media (min-width: 768px) { .legal h1 { font-size: 2.5rem; } }

.legal__updated { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }

.legal h2 {
  margin-top: 2.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--foreground);
}
.legal h3 {
  margin-top: 1.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--foreground);
}
.legal p { margin-top: 1rem; line-height: 1.7; color: var(--muted-foreground); }
.legal ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.625rem; }
.legal li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}
.legal li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 9999px;
  background-color: var(--gold);
}
.legal a { color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ==========================================================================
   FLOATING ACTIONS
   ========================================================================== */
.floating-actions { position: fixed; bottom: 5rem; right: 1rem; z-index: 40; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 768px) { .floating-actions { bottom: 1.5rem; right: 1.5rem; } }
.floating-actions__top { opacity: 0; pointer-events: none; transform: translateY(0.5rem); }
.floating-actions__top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.floating-actions__whatsapp {
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft-lg);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.floating-actions__whatsapp:hover { transform: translateY(-2px); filter: brightness(1.1); }

.sticky-mobile-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  border-top: 1px solid var(--border);
  background-color: rgba(245, 243, 238, 0.95);
  padding: 0.75rem 1rem;
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) { .sticky-mobile-cta { display: none; } }
.sticky-mobile-cta a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background-color: var(--gold);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-foreground);
  box-shadow: var(--shadow-soft);
  transition: filter 0.2s ease;
}
.sticky-mobile-cta a:hover { filter: brightness(1.05); }