/* ===================================
   PUDIM NO COPO AMERICANO
   Landing Page — Premium Design System
   Mobile-First Approach
   =================================== */

/* --- Typography: Loaded via <link> in HTML --- */

/* --- Design Tokens --- */
:root {
  /* Palette — warm gourmet tones */
  --espresso: #2c1006;
  --chocolate: #4a1e0a;
  --chocolate-mid: #6b3012;
  --caramel: #c77d1a;
  --caramel-light: #e8a33a;
  --amber: #f0b648;
  --cream: #fdf6ec;
  --cream-warm: #faf0e0;
  --cream-dark: #f0dfc4;
  --white: #ffffff;
  --rose: #F2A21B;
  --rose-deep: #d88e15;
  --rose-glow: rgba(242, 162, 27, 0.35);

  /* Neutrals */
  --text-body: #5c4033;
  --text-muted: #8c7060;
  --border-light: rgba(74, 30, 10, 0.06);
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.35);

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  /* Spacing — mobile base */
  --section-py: 64px;
  --section-px: 20px;
  --gap-sm: 12px;
  --gap-md: 24px;
  --gap-lg: 40px;

  /* Radii */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 40px;
  --r-full: 100px;

  /* Shadows */
  --shadow-subtle: 0 2px 12px rgba(44, 16, 6, 0.06);
  --shadow-card: 0 8px 30px rgba(44, 16, 6, 0.08);
  --shadow-lifted: 0 20px 50px rgba(44, 16, 6, 0.12);
  --shadow-hero: 0 30px 60px -15px rgba(44, 16, 6, 0.2);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.6s;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--chocolate);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* --- Grain Texture Overlay (optimized compositing) --- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  contain: strict;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section {
  padding: var(--section-py) 0;
  contain: content;
}

/* --- Typography System --- */
.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--chocolate);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

.text-caramel {
  color: var(--caramel);
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* --- Decorator --- */
.decorator-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--caramel), var(--amber));
  border-radius: var(--r-full);
  margin-bottom: 20px;
}

.decorator-line.center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Scroll Reveal Animations (only when JS is available) --- */
html.js .fade-up,
html.js .fade-left,
html.js .fade-right,
html.js .scale-in {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}

html.js .fade-up {
  transform: translateY(36px);
}

html.js .fade-left {
  transform: translateX(-36px);
}

html.js .fade-right {
  transform: translateX(36px);
}

html.js .scale-in {
  transform: scale(0.94);
}

html.js .fade-up.visible,
html.js .fade-left.visible,
html.js .fade-right.visible,
html.js .scale-in.visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

html.js .delay-1 {
  transition-delay: 0.08s;
}

html.js .delay-2 {
  transition-delay: 0.16s;
}

html.js .delay-3 {
  transition-delay: 0.24s;
}

html.js .delay-4 {
  transition-delay: 0.32s;
}

/* ===================================
   CTA BUTTONS
   =================================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--rose);
  color: #6A2C0B;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 8px 24px -4px var(--rose-glow);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 340px;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.7s ease;
}

.btn-cta:hover {
  background: var(--rose-deep);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px -6px var(--rose-glow);
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta-lg {
  padding: 20px 48px;
  font-size: 0.95rem;
}

@keyframes cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 162, 27, 0.5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(242, 162, 27, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(242, 162, 27, 0);
  }
}

.btn-cta-pulse {
  animation: cta-pulse 2.8s infinite;
}

.btn-cta-glow {
  background: linear-gradient(90deg, #F2A21B, #fadc87, #F2A21B);
  background-size: 200% auto;
  animation: glow-bg 3s linear infinite, cta-pulse 2.8s infinite;
  color: #4a1e0a;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-cta-glow:hover {
  background-position: right center;
}

@keyframes glow-bg {
  to {
    background-position: 200% center;
  }
}

/* ===================================
   CARDS
   =================================== */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lifted);
}

/* ===================================
   1. HERO — Mobile First
   =================================== */
.hero {
  background: var(--cream);
  padding: 32px 0 56px;
  position: relative;
  overflow: hidden;
}

/* Decorative blurred shapes */
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(232, 163, 58, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(199, 125, 26, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--caramel);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--espresso);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.hero-title span {
  display: block;
  color: var(--caramel);
  font-style: italic;
  font-weight: 500;
  font-size: 0.92em;
  margin-top: 4px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--chocolate);
}

.hero-benefit .check-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--caramel), var(--amber));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.hero-trust {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--caramel);
  font-style: italic;
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 2px solid var(--caramel-light);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  order: -1;
  /* Image first on mobile */
}

.hero-image-wrapper img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-hero);
  width: 100%;
  max-width: 400px;
  object-fit: cover;
}

.hero-image-bg {
  position: absolute;
  width: 85%;
  height: 85%;
  background: linear-gradient(135deg, rgba(232, 163, 58, 0.12), rgba(199, 125, 26, 0.08));
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: hero-float 7s ease-in-out infinite;
  will-change: transform;
}

@keyframes hero-float {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0) rotate(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-12px) rotate(2deg);
  }
}

/* Decor Elements Positioning */
.decor-course-glass {
  position: absolute;
  top: 10%;
  right: -25px;
  opacity: 0.15;
  transform: rotate(20deg);
  z-index: 0;
  pointer-events: none;
}

.decor-bonus-crown {
  position: absolute;
  top: 25%;
  left: -20px;
  opacity: 0.15;
  transform: rotate(-15deg);
  z-index: 0;
  pointer-events: none;
}

.decor-offer-fouet {
  position: absolute;
  top: 15%;
  left: -15px;
  opacity: 0.2;
  transform: rotate(-25deg);
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 640px) {
  .decor-course-glass {
    right: 5%;
  }

  .decor-bonus-crown {
    left: 5%;
  }

  .decor-offer-fouet {
    left: 10%;
  }
}

/* Trust Badges */
.hero-trust-badges {
  margin-top: 24px;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

.hero-trust-badges .trust-title {
  display: none;
}

.trust-icons-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: var(--text-muted);
}

.trust-item svg {
  color: var(--caramel);
}

.trust-item span {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Floating Elements (Hero) */
.float-anim {
  animation: floating 6s ease-in-out infinite;
  will-change: transform;
}

.delay-float-1 {
  animation-delay: 1.5s;
}

.delay-float-2 {
  animation-delay: 3s;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.decor-hero-crown {
  position: absolute;
  top: 10%;
  right: 5%;
  opacity: 0.8;
  transform: rotate(15deg);
  z-index: 2;
  pointer-events: none;
}

.mini-float-card {
  position: absolute;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.4);
  /* Translucidez */
  backdrop-filter: blur(8px);
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(242, 162, 27, 0.4);
  /* Neon effect */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 1.5px solid var(--caramel-light);
}

.mini-card-icon {
  color: var(--caramel);
  display: flex;
}

.mini-float-card.card-left {
  top: 15%;
  left: 0%;
}

.mini-float-card.card-right {
  bottom: 25%;
  right: -5%;
}

@media (min-width: 640px) {
  .mini-float-card.card-left {
    left: 10%;
  }

  .mini-float-card.card-right {
    right: 5%;
  }

  .trust-icons-row {
    gap: 32px;
  }

  .hero-trust-badges {
    text-align: left;
    margin-left: 20px;
  }
}

/* ===================================
   2. PROBLEM
   =================================== */
.problem {
  background: var(--white);
}

.problem-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.problem-narrative {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 32px;
}

.pain-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pain-point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #fff5f3, #fff9f5);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--rose);
  text-align: left;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--chocolate-mid);
  transition: transform 0.3s var(--ease-out);
}

.pain-point:hover {
  transform: translateX(4px);
}

.pain-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.problem-closing {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--chocolate);
  padding: 20px;
  background: rgba(199, 125, 26, 0.07);
  border-radius: var(--r-sm);
  border: 1px solid rgba(199, 125, 26, 0.12);
}

/* Image Placeholders */
img.img-placeholder {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--r-md);
  margin: 0 auto 20px;
  background: rgba(199, 125, 26, 0.08);
  border: none;
}

/* ===================================
   3. OPPORTUNITY
   =================================== */
.opportunity {
  background: var(--cream);
}

.opportunity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
  margin-bottom: 32px;
}

.opportunity-card {
  text-align: center;
  padding: 32px 20px;
}

.opportunity-card .card-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.5s var(--ease-spring);
}

.opportunity-card:hover .card-icon {
  transform: scale(1.18) rotate(-4deg);
}

.opportunity-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: 8px;
}

.opportunity-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.opportunity-closing {
  font-size: 1rem;
  color: var(--text-body);
  text-align: center;
  font-weight: 500;
}

.opportunity-closing strong {
  color: var(--caramel);
}

/* ===================================
   4. COURSE PRESENTATION
   =================================== */
.course-pres {
  background: var(--white);
}

.course-pres-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.course-pres-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lifted);
}

.course-pres-image img {
  width: 100%;
  object-fit: cover;
  min-height: 260px;
}

.course-pres-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--chocolate);
  line-height: 1.2;
  margin-bottom: 16px;
}

.course-pres-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--chocolate);
}

.feature-check {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--caramel), var(--amber));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===================================
   5. STORY
   =================================== */
.story {
  background: var(--espresso);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c77d1a' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.story .container {
  position: relative;
  z-index: 1;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}

.story-avatar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.story-avatar {
  width: 220px;
  height: 280px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  background: var(--chocolate-mid);
}

.story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.story-avatar-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--caramel);
  color: var(--white);
  padding: 8px 22px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-subtle);
}

.story-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream-warm);
  margin-bottom: 24px;
}

.story-text {
  font-size: 0.98rem;
  line-height: 1.9;
  color: rgba(253, 246, 236, 0.8);
}

.story-text p {
  margin-bottom: 14px;
}

.story-text strong {
  color: var(--caramel-light);
}

.story-highlight {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(199, 125, 26, 0.1);
  border-left: 3px solid var(--caramel);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  color: var(--caramel-light);
  text-align: left;
}

/* ===================================
   6. MEDIA LOGOS
   =================================== */
.media {
  background: var(--cream-warm);
}

.media-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.media-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  background: var(--white);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-light);
  transition: all 0.3s var(--ease-out);
}

.media-logo-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.media-logo-item span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===================================
   7. MODULES
   =================================== */
.modules {
  background: var(--white);
}

.modules-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 36px;
}

.module-item {
  background: var(--cream);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: border-color 0.3s ease;
}

.module-item.active {
  border-color: var(--caramel-light);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.module-header:hover {
  background: rgba(199, 125, 26, 0.04);
}

.module-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--caramel), var(--amber));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.module-header h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--chocolate);
  flex: 1;
}

.module-chevron {
  color: var(--text-muted);
  font-size: 0.75rem;
  transition: transform 0.4s var(--ease-out);
  opacity: 0.5;
}

.module-item.active .module-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--caramel);
}

.module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.module-item.active .module-body {
  max-height: 300px;
}

.module-body-content {
  padding: 0 20px 20px 74px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================================
   8. BONUS
   =================================== */
.bonus {
  background: var(--cream);
}

.bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.bonus-card {
  text-align: center;
  padding: 36px 24px;
  background: linear-gradient(160deg, var(--white) 0%, var(--cream-warm) 100%);
  position: relative;
  overflow: hidden;
}

.bonus-card::after {
  content: 'BÔNUS';
  position: absolute;
  top: 14px;
  right: -30px;
  background: var(--caramel);
  color: var(--white);
  padding: 3px 40px;
  font-size: 0.6rem;
  font-weight: 700;
  transform: rotate(45deg);
  letter-spacing: 1.5px;
}

.bonus-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.bonus-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: 8px;
}

.bonus-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================
   9. AUDIENCE
   =================================== */
.audience {
  background: var(--white);
}

.audience-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.audience-col {
  padding: 28px 24px;
  border-radius: var(--r-md);
}

.audience-col.positive {
  background: linear-gradient(135deg, #f0fdf4, #ecfce5);
  border: 1px solid rgba(34, 197, 94, 0.12);
}

.audience-col.negative {
  background: linear-gradient(135deg, var(--cream), var(--cream-warm));
  border: 1px solid var(--border-light);
}

.audience-col h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--chocolate);
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.audience-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.positive .audience-icon {
  color: #22c55e;
}

.negative .audience-icon {
  color: var(--text-muted);
}

/* ===================================
   10. OFFER
   =================================== */
.offer {
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.offer-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 24px;
  box-shadow: var(--shadow-lifted);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(199, 125, 26, 0.15);
}

.offer-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--caramel), var(--amber), var(--caramel));
}

.premium-box {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  border: 2px solid var(--caramel-light);
  box-shadow: 0 25px 50px -12px rgba(199, 125, 26, 0.2);
}

.offer-badge-ribbon {
  position: absolute;
  top: 24px;
  left: -7px;
  background: var(--chocolate);
  color: var(--white);
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 0 4px 4px 0;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.offer-badge-ribbon::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  border-width: 6px 6px 0 0;
  border-style: solid;
  border-color: var(--espresso) transparent transparent transparent;
}

.offer-crown {
  margin: 0 auto 12px;
  display: block;
}

.offer-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--chocolate);
  margin-bottom: 28px;
}

.offer-includes {
  text-align: left;
  margin-bottom: 28px;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--chocolate);
  border-bottom: 1px solid rgba(74, 30, 10, 0.04);
}

.offer-item:last-child {
  border-bottom: none;
}

.offer-check {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.offer-price-wrapper {
  margin-bottom: 24px;
}

.offer-price-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.offer-price {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--espresso);
  line-height: 1;
}

.price-strikethrough {
  text-decoration: line-through;
  opacity: 0.6;
  margin-right: 4px;
}

.premium-price {
  background: linear-gradient(90deg, var(--chocolate), var(--caramel));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 4px;
}

.premium-price .currency {
  font-size: 1.6rem;
  font-weight: 600;
  -webkit-text-fill-color: var(--caramel);
}

.premium-price .cents {
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: super;
}

.price-installment {
  font-size: 1.05rem;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 24px;
}

.offer-support {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.offer-support span {
  margin: 0 6px;
  opacity: 0.4;
}

/* ===================================
   11. GUARANTEE
   =================================== */
.guarantee {
  background: var(--white);
}

.guarantee-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 24px;
  background: linear-gradient(135deg, #f0fdf4, #ecfce5);
  border-radius: var(--r-lg);
  border: 1px solid rgba(34, 197, 94, 0.12);
  text-align: center;
}

.guarantee-icon {
  font-size: 3.5rem;
}

.guarantee-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: 8px;
}

.guarantee-text p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===================================
   12. FAQ
   =================================== */
.faq {
  background: var(--cream);
}

.faq-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-subtle);
}

.faq-item.active {
  border-color: var(--caramel-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--chocolate);
  user-select: none;
}

.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(199, 125, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--caramel);
  transition: all 0.3s var(--ease-out);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  background: var(--caramel);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-content {
  padding: 0 20px 20px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===================================
   13. FINAL CTA
   =================================== */
.final-cta {
  background: var(--espresso);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c77d1a' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta-text {
  font-size: 1.05rem;
  color: rgba(253, 246, 236, 0.8);
  max-width: 500px;
  margin: 0 auto 14px;
  line-height: 1.7;
}

.final-cta-highlight {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--caramel-light);
  margin-bottom: 36px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--espresso);
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid rgba(199, 125, 26, 0.08);
}

.footer p {
  font-size: 0.78rem;
  color: rgba(253, 246, 236, 0.35);
}

/* ===================================
   FLOATING TOP BAR
   =================================== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(44, 16, 6, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.topbar.show {
  transform: translateY(0);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-brand {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream-warm);
}

.topbar .btn-cta {
  padding: 9px 22px;
  font-size: 0.72rem;
  width: auto;
  max-width: none;
}

/* ===================================
   RESPONSIVE — Tablet (640px)
   =================================== */
@media (min-width: 640px) {
  :root {
    --section-py: 80px;
    --section-px: 32px;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .hero {
    padding: 48px 0 72px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .opportunity-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

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

  .media-logos {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }

  .modules-grid {
    max-width: 720px;
    margin: 0 auto;
  }

  .faq-list {
    max-width: 720px;
    margin: 0 auto;
  }

  .guarantee-content {
    flex-direction: row;
    text-align: left;
    padding: 40px;
  }
}

/* ===================================
   RESPONSIVE — Desktop (1024px)
   =================================== */
@media (min-width: 1024px) {
  :root {
    --section-py: 110px;
    --section-px: 40px;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .hero {
    padding: 80px 0 100px;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .hero-image-wrapper {
    order: 0;
    flex: 0 0 45%;
  }

  .hero-content {
    flex: 1;
  }

  .hero-title {
    font-size: 3.6rem;
  }

  .hero-image-wrapper img {
    max-width: 500px;
  }

  .hero-image-bg {
    width: 420px;
    height: 420px;
  }

  .btn-cta {
    width: auto;
    max-width: none;
  }

  .opportunity-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .course-pres-grid {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .course-pres-image {
    flex: 0 0 48%;
  }

  .course-pres-title {
    font-size: 2.2rem;
  }

  .course-pres-image img {
    min-height: 400px;
  }

  .story-grid {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 60px;
  }

  .story-avatar-wrapper {
    flex: 0 0 280px;
  }

  .story-avatar {
    width: 280px;
    height: 360px;
  }

  .story-title {
    font-size: 2.2rem;
  }

  .story-highlight {
    text-align: left;
  }

  .offer-box {
    padding: 56px 48px;
  }

  .offer-title {
    font-size: 2.2rem;
  }

  .offer-price {
    font-size: 4.5rem;
  }
}

/* ===================================
   RESPONSIVE — Large Desktop (1280px)
   =================================== */
@media (min-width: 1280px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-grid {
    gap: 80px;
  }

  .course-pres-grid {
    gap: 80px;
  }

  .story-grid {
    gap: 80px;
  }
}

/* ===================================
   REDUCED MOTION
   =================================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===================================
   HERO LOGO IMG (moved from inline)
   =================================== */
.hero-image-wrapper img.hero-logo-img {
  max-width: 150px !important;
  width: 100% !important;
  height: auto !important;
  margin-bottom: 2rem;
  z-index: 10;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain !important;
}

@media (min-width: 1024px) {
  .hero-image-wrapper img.hero-logo-img {
    max-width: 280px !important;
  }
}