/* ===================================================
   MEU PRIMEIRO LIVRO PARA FALAR INGLÊS — Landing Page
   =================================================== */

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

:root {
  --primary:      #f7941d;
  --primary-dark: #d97706;
  --secondary:    #7c3aed;
  --secondary-dark: #5b21b6;
  --accent:       #10b981;
  --danger:       #ef4444;
  --text:         #1e293b;
  --text-light:   #64748b;
  --bg:           #ffffff;
  --bg-soft:      #f8fafc;
  --bg-dark:      #0f172a;
  --border:       #e2e8f0;

  --font-main: 'Nunito', sans-serif;
  --font-display: 'Fredoka One', cursive;

  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Section Shared ---- */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  line-height: 1.2;
  margin: 12px 0 16px;
}
.section-title.white { color: #ffffff; }
.section-desc { font-size: 1.1rem; color: var(--text-light); max-width: 640px; margin: 0 auto; }

/* ---- Badge Pills ---- */
.badge-pill {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.badge-orange { background: #fff3e0; color: #d97706; border: 1.5px solid #f7941d; }
.badge-purple { background: #ede9fe; color: #7c3aed; border: 1.5px solid #7c3aed; }
.badge-green  { background: #d1fae5; color: #065f46; border: 1.5px solid #10b981; }
.badge-blue   { background: #dbeafe; color: #1e40af; border: 1.5px solid #3b82f6; }
.hero-format-badge { margin-top: 12px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 60px;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  line-height: 1;
  border: none;
}
.btn:hover { transform: translateY(-3px); filter: brightness(1.06); }
.btn:active { transform: translateY(0); }

.btn-hero {
  background: linear-gradient(135deg, #f7941d, #e05d00);
  color: #fff;
  font-size: 1.15rem;
  padding: 20px 44px;
  box-shadow: 0 8px 32px rgba(247,148,29,0.45);
}
.btn-offer {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 1.2rem;
  padding: 22px 48px;
  box-shadow: 0 8px 32px rgba(16,185,129,0.45);
  width: 100%;
}
.btn-final {
  background: linear-gradient(135deg, #f7941d, #e05d00);
  color: #fff;
  font-size: 1.15rem;
  padding: 22px 48px;
  box-shadow: 0 8px 32px rgba(247,148,29,0.45);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(247,148,29,0.45); }
  50%       { box-shadow: 0 12px 52px rgba(247,148,29,0.80); transform: translateY(-2px) scale(1.02); }
}
.pulse-btn { animation: pulse-glow 2s ease-in-out infinite; }

/* ===================================================
   TOP BAR
   =================================================== */
.top-bar {
  background: linear-gradient(90deg, #d97706, #f7941d, #d97706);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 100;
  background-size: 200% auto;
  animation: shimmer-bar 3s linear infinite;
}
@keyframes shimmer-bar {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.top-bar s { opacity: 0.75; }
.top-bar-cta {
  display: inline-block;
  background: #fff;
  color: #d97706;
  border-radius: 20px;
  padding: 3px 14px;
  font-weight: 800;
  margin-left: 10px;
  font-size: 0.82rem;
  transition: background var(--transition);
}
.top-bar-cta:hover { background: #fff3cd; }

/* ===================================================
   HERO
   =================================================== */
.hero {
  background: linear-gradient(135deg, #fef9f0 0%, #fff8f0 40%, #f0f4ff 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Background shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -150px; }
.shape-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -150px; left: -100px; }
.shape-3 { width: 250px; height: 250px; background: var(--accent); top: 50%; left: 40%; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero Text */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--text);
  line-height: 1.15;
  margin: 16px 0 20px;
}
.hero-title .highlight {
  color: var(--primary);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  border-radius: 4px;
  opacity: 0.4;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 520px;
}

/* Social proof avatars */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.avatars { display: flex; }
.avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-right: -10px;
  object-fit: cover;
}
.hero-social-proof p { font-size: 0.9rem; font-weight: 600; color: var(--text-light); }

/* Price Box Hero */
.price-box-hero {
  background: linear-gradient(135deg, #fff8f0, #fff3e0);
  border: 2px solid #f7941d;
  border-radius: var(--radius);
  padding: 20px 28px;
  display: inline-block;
  margin-bottom: 28px;
}
.price-old { font-size: 1rem; color: var(--text-light); margin-bottom: 4px; }
.price-new {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
}
.price-big { font-size: 3rem; color: var(--primary); }
.price-save { font-size: 0.9rem; color: var(--accent); font-weight: 700; margin-top: 6px; }

.ebook-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.ebook-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  color: #1e3a8a;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 700;
}
.ebook-note i { color: #2563eb; }
.hero-guarantee-text {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 14px;
}
.hero-guarantee-text i { color: var(--accent); }

/* Book Mockup */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.book-mockup {
  position: relative;
  width: 240px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.book-cover {
  width: 240px;
  height: 320px;
  background: linear-gradient(145deg, #7c3aed, #5b21b6);
  border-radius: 6px 16px 16px 6px;
  box-shadow: -8px 6px 0 #4c1d95, var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.book-cover::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 18px;
  background: rgba(0,0,0,0.2);
  border-radius: 6px 0 0 6px;
}
.book-cover-inner {
  text-align: center;
  padding: 20px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.book-icon-area { font-size: 2.5rem; margin-bottom: 10px; }
.book-cover-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 8px;
}
.book-cover-title span { color: #fbbf24; }
.book-cover-sub { font-size: 0.75rem; opacity: 0.8; margin-bottom: 14px; }
.book-characters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.book-characters span {
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 700;
}
.book-shadow {
  width: 200px;
  height: 20px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  margin: 10px auto 0;
  filter: blur(8px);
}

/* Floating badges on book */
.floating-badge {
  position: absolute;
  background: #fff;
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: var(--shadow);
  color: var(--text);
}
.badge-top  { top: 10px; right: -10px; color: var(--primary); }
.badge-bottom { bottom: 30px; left: -20px; }

/* ===================================================
   COUNTDOWN
   =================================================== */
.countdown-section {
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  padding: 28px 20px;
  text-align: center;
}
.countdown-label {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.time-unit {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 12px 20px;
  text-align: center;
  min-width: 72px;
}
.time-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #f7941d;
  line-height: 1;
}
.time-label {
  display: block;
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.time-separator {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #f7941d;
  margin-bottom: 20px;
}

/* ===================================================
   PROBLEM SECTION
   =================================================== */
.section-problem { background: var(--bg-soft); }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.problem-card:hover {
  border-color: var(--danger);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.problem-icon { font-size: 2.5rem; margin-bottom: 12px; }
.problem-card p { font-size: 0.95rem; color: var(--text-light); }
.problem-solution-bridge {
  text-align: center;
  margin-top: 40px;
  background: linear-gradient(135deg, #fff3e0, #ede9fe);
  border-radius: var(--radius);
  padding: 28px 32px;
  font-size: 1.15rem;
  font-weight: 600;
}
.highlight-text { color: var(--primary); font-weight: 800; }

/* ===================================================
   SOLUTION SECTION
   =================================================== */
.section-solution {
  background: linear-gradient(135deg, #5b21b6, #7c3aed, #4f46e5);
  position: relative;
  overflow: hidden;
}
.section-solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.solution-wrapper {
  text-align: center;
  position: relative;
  z-index: 1;
}
.solution-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 6px 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.solution-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 40px;
}
.solution-pillars {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pillar {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  color: #fff;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  backdrop-filter: blur(10px);
  transition: background var(--transition), transform var(--transition);
}
.pillar:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.pillar-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.pillar strong { display: block; font-size: 0.95rem; margin-bottom: 6px; }
.pillar p { font-size: 0.82rem; opacity: 0.8; }

/* ===================================================
   CHAPTERS / INSIDE
   =================================================== */
.section-inside { background: #fff; }
.chapters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.chapter-card {
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  animation-delay: var(--delay, 0s);
  position: relative;
  overflow: hidden;
}
.chapter-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.chapter-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.chapter-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(124,58,237,0.1);
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 16px;
}
.chapter-icon { font-size: 1.8rem; margin-bottom: 10px; }
.chapter-card h3 { font-size: 0.95rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.chapter-card p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 12px; }
.chapter-mission {
  background: #fff3e0;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* Extras Box */
.extras-box {
  margin-top: 48px;
  background: linear-gradient(135deg, #ede9fe, #dbeafe);
  border-radius: var(--radius);
  padding: 36px 40px;
  text-align: center;
}
.extras-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--text);
}
.extras-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: left;
}
.extra-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.extra-item i { color: var(--accent); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

/* ===================================================
   METHODOLOGY / STEPS
   =================================================== */
.section-method { background: var(--bg-soft); }
.steps-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon { font-size: 2.2rem; margin-bottom: 12px; margin-top: 8px; }
.step-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--text-light); }
.step-arrow {
  font-size: 1.8rem;
  color: var(--border);
  flex-shrink: 0;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.section-testimonials { background: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, #fff9f0, #fff3e0);
  transform: scale(1.03);
}
.testimonial-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.stars { font-size: 1rem; margin-bottom: 14px; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author strong { display: block; font-size: 0.92rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-light); }
.testimonial-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 800;
}

/* ===================================================
   FOR WHOM
   =================================================== */
.section-for-whom { background: var(--bg-soft); }
.for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.for-whom-card {
  border-radius: var(--radius);
  padding: 36px 32px;
}
.for-whom-card.yes {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border: 2px solid #10b981;
}
.for-whom-card.no {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border: 2px solid #ef4444;
}
.for-whom-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.for-whom-card.yes h3 { color: #065f46; }
.for-whom-card.yes h3 i { color: #10b981; }
.for-whom-card.no h3 { color: #7f1d1d; }
.for-whom-card.no h3 i { color: #ef4444; }
.for-whom-card ul { display: flex; flex-direction: column; gap: 12px; }
.for-whom-card li { font-size: 0.95rem; font-weight: 600; line-height: 1.4; }

/* ===================================================
   OFFER SECTION
   =================================================== */
.section-offer {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  position: relative;
  overflow: hidden;
}
.section-offer::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.2), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.offer-wrapper { position: relative; z-index: 1; text-align: center; }
.offer-badge-fire {
  display: inline-block;
  background: var(--danger);
  color: #fff;
  border-radius: 100px;
  padding: 8px 24px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: bounce-badge 1.5s ease-in-out infinite;
}
@keyframes bounce-badge {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}
.offer-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 36px;
}
.offer-title span { color: var(--primary); }

.offer-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

/* Mini Book in Offer */
.mini-book {
  width: 150px;
  height: 200px;
  background: linear-gradient(145deg, #7c3aed, #5b21b6);
  border-radius: 4px 12px 12px 4px;
  box-shadow: -5px 4px 0 #4c1d95, 0 8px 24px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}
.mini-book::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 12px;
  background: rgba(0,0,0,0.2);
  border-radius: 4px 0 0 4px;
}
.mini-book-inner {
  text-align: center;
  color: #fff;
  padding: 16px;
  font-size: 1.5rem;
  line-height: 1.4;
}
.mini-book-inner p { font-size: 0.75rem; margin-top: 8px; }
.mini-book-inner strong { color: #fbbf24; }

.offer-includes { text-align: left; }
.offer-includes p {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.offer-includes p:last-child { border-bottom: none; }

.offer-price-area { text-align: center; }
.offer-price-old { font-size: 1.1rem; color: var(--text-light); margin-bottom: 6px; }
.offer-price-label { font-size: 0.9rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.offer-price-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin: 10px 0 14px;
  line-height: 1;
}
.offer-price-main .currency { font-size: 1.6rem; font-weight: 800; color: var(--accent); margin-top: 8px; }
.offer-price-main .amount { font-family: var(--font-display); font-size: 5rem; color: var(--accent); }
.offer-price-main .cents { font-size: 1.6rem; font-weight: 800; color: var(--accent); margin-top: 8px; }
.offer-savings {
  background: #d1fae5;
  color: #065f46;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
}
.offer-urgency {
  font-size: 0.85rem;
  color: var(--danger);
  font-weight: 700;
  margin-top: 12px;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.payment-methods span { font-size: 0.78rem; color: var(--text-light); font-weight: 600; }
.payment-methods i { font-size: 1.6rem; color: var(--text-light); }
.pix-label {
  font-size: 0.7rem !important;
  background: #00b57a;
  color: #fff !important;
  border-radius: 4px;
  padding: 2px 8px;
  font-weight: 800 !important;
}

/* Offer Guarantees */
.offer-guarantees {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  text-align: center;
}
.guarantee-item i { font-size: 1.4rem; color: var(--accent); }

/* ===================================================
   GUARANTEE
   =================================================== */
.section-guarantee { background: var(--bg-soft); }
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 40px 48px;
  max-width: 800px;
  margin: 0 auto;
}
.guarantee-shield { font-size: 4rem; flex-shrink: 0; }
.guarantee-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 12px;
}
.guarantee-content p { color: var(--text-light); font-size: 0.97rem; line-height: 1.7; }

/* ===================================================
   FAQ
   =================================================== */
.section-faq { background: #fff; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  background: none;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-soft); }
.faq-question i {
  font-size: 0.85rem;
  color: var(--text-light);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p { font-size: 0.93rem; color: var(--text-light); line-height: 1.7; }

/* ===================================================
   FINAL CTA
   =================================================== */
.section-final-cta {
  background: linear-gradient(135deg, #fef9f0, #fff8f0);
  text-align: center;
}
.final-cta-wrapper { max-width: 700px; margin: 0 auto; }
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text);
  margin-bottom: 16px;
}
.final-cta-sub { color: var(--text-light); font-size: 1rem; margin-bottom: 28px; }
.final-price { margin-bottom: 24px; }
.final-price-old { font-size: 1rem; color: var(--text-light); }
.final-price-new { font-family: var(--font-display); font-size: 1.8rem; color: var(--text); }
.final-price-new strong { color: var(--accent); font-size: 2.2rem; }
.final-cta-guarantee {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.final-cta-guarantee i { color: var(--accent); }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-links h4, .footer-legal h4 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links ul, .footer-legal ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-legal a {
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-legal a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-disclaimer { font-size: 0.75rem; opacity: 0.5; margin-top: 8px; }

/* ===================================================
   FLOATING CTA (Mobile)
   =================================================== */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f7941d, #e05d00);
  color: #fff;
  border-radius: 60px;
  padding: 14px 28px;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(247,148,29,0.5);
  z-index: 999;
  white-space: nowrap;
  transition: opacity var(--transition), transform var(--transition);
  animation: pulse-glow 2s ease-in-out infinite;
}
.floating-cta i { margin-right: 8px; }

/* ===================================================
   ANIMATIONS (data-animate)
   =================================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}
[data-animate="fade-left"]  { transform: translateX(-40px); }
[data-animate="fade-right"] { transform: translateX(40px); }
[data-animate].visible {
  opacity: 1;
  transform: translate(0);
}

/* ===================================================
   RESPONSIVE — TABLET (≤ 1024px)
   =================================================== */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr; text-align: center; }
  .hero-text       { order: 2; }
  .hero-image      { order: 1; }
  .hero-social-proof { justify-content: center; }
  .price-box-hero  { display: inline-block; }
  .ebook-note { justify-content: center; }

  .chapters-grid   { grid-template-columns: repeat(2, 1fr); }
  .extras-list     { grid-template-columns: repeat(2, 1fr); }

  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .footer-brand    { grid-column: 1 / -1; }
}

/* ===================================================
   RESPONSIVE — MOBILE (≤ 768px)
   =================================================== */
@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .problems-grid { grid-template-columns: 1fr 1fr; }
  .solution-pillars { gap: 12px; }
  .pillar { min-width: 130px; max-width: 150px; padding: 18px; }

  .chapters-grid { grid-template-columns: 1fr 1fr; }

  .steps-grid { flex-direction: column; gap: 24px; }
  .step-arrow { transform: rotate(90deg); }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: scale(1); }
  .testimonial-card.featured:hover { transform: translateY(-4px); }

  .for-whom-grid { grid-template-columns: 1fr; }

  .offer-card { grid-template-columns: 1fr; gap: 24px; }

  .guarantee-box { flex-direction: column; text-align: center; padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }

  .floating-cta { display: flex; align-items: center; }
}

/* ===================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   =================================================== */
@media (max-width: 480px) {
  .top-bar { font-size: 0.78rem; }
  .top-bar-cta { display: block; margin: 6px auto 0; width: fit-content; }

  .hero { padding: 50px 0 40px; }
  .hero-title { font-size: 1.8rem; }
  .btn-hero { font-size: 0.95rem; padding: 16px 24px; }
  .ebook-note span { width: 100%; justify-content: center; }

  .problems-grid { grid-template-columns: 1fr; }
  .chapters-grid { grid-template-columns: 1fr; }
  .extras-list   { grid-template-columns: 1fr; }

  .countdown-timer { gap: 4px; }
  .time-unit { padding: 10px 14px; min-width: 58px; }
  .time-number { font-size: 1.8rem; }

  .book-mockup { width: 180px; }
  .book-cover { width: 180px; height: 240px; }
}
