/* ═══════════════════════════════════════════════════════
   Design para Impressão — designimpressao.com.br
   Stylesheet principal
   ═══════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #FF6B00;
  --orange-light: #FF8C35;
  --orange-glow:  rgba(255,107,0,0.18);
  --gold:         #E8A020;
  --bg:           #0B0B0B;
  --bg2:          #111111;
  --bg3:          #181818;
  --bg4:          #1F1F1F;
  --text:         #F0F0F0;
  --text-muted:   #888;
  --text-dim:     #C0C0C0;
  --border:       rgba(255,255,255,0.08);
  --radius:       12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a    { text-decoration: none; color: inherit; }
img  { max-width: 100%; display: block; }

/* ─── LAYOUT ────────────────────────────────────────────── */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ─── UTILITY ───────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--orange-glow);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.highlight      { color: var(--orange); }
.highlight-gold { color: var(--gold); }

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 18px 44px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(255,107,0,0.35);
  letter-spacing: 0.01em;
  text-align: center;
}
.btn-cta:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(255,107,0,0.5);
}
.btn-cta--large  { font-size: 1.2rem; padding: 22px 52px; }
.btn-cta--ghost  { background: transparent; border: 2px solid var(--orange); color: var(--orange); box-shadow: none; }
.btn-cta--ghost:hover { background: var(--orange-glow); }

.btn-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ─── URGENCY BAR ───────────────────────────────────────── */
.urgency-bar {
  background: var(--orange);
  text-align: center;
  padding: 11px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}
.urgency-bar #countdown {
  font-weight: 900;
  margin-left: 4px;
}

/* ─── TOPBAR ────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,11,11,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.topbar__logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
}
.topbar__logo span { color: var(--orange); }
.topbar__cta { font-size: 0.85rem; padding: 10px 22px; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__pretitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__title em { font-style: normal; color: var(--orange); }
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__proof-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
}
.hero__proof-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* ─── PAIN SECTION ──────────────────────────────────────── */
.pain { background: var(--bg2); text-align: center; }
.pain__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 580px;
  margin: 0 auto 40px;
  text-align: left;
}
.pain__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.97rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.pain__list li .icon { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.pain__reveal {
  background: rgba(255,107,0,0.07);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.65;
}

/* ─── VALUE CHAIN ───────────────────────────────────────── */
.value-chain { padding: 72px 0; background: var(--bg); text-align: center; }
.value-chain__flow {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.chain-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  padding: 24px 28px;
  background: var(--bg3);
  border: 1px solid var(--border);
}
.chain-step:first-child  { border-radius: 12px 12px 0 0; border-bottom: none; }
.chain-step--last {
  background: rgba(255,107,0,0.07);
  border: 2px solid rgba(255,107,0,0.35);
  border-top: none;
  border-radius: 0 0 12px 12px;
}
.chain-step:not(:first-child):not(.chain-step--last):not(.chain-arrow) {
  border-top: none;
  border-bottom: none;
}
.chain-arrow {
  text-align: center;
  padding: 6px 0;
  color: var(--orange);
  font-size: 1.1rem;
  background: var(--bg3);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.chain-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange-glow);
  border: 1px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.chain-icon--solid { background: var(--orange); border-color: var(--orange); }
.chain-title  { font-weight: 700; font-size: 0.97rem; margin-bottom: 4px; }
.chain-title--highlight { font-weight: 800; font-size: 1rem; color: var(--orange); }
.chain-desc   { font-size: 0.87rem; color: var(--text-muted); line-height: 1.55; }
.chain-desc--bright { color: var(--text-dim); }

/* ─── VIDEO SECTION ─────────────────────────────────────── */
.video-section { text-align: center; }
.video-wrap {
  max-width: 680px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255,107,0,0.25);
  box-shadow: 0 0 60px rgba(255,107,0,0.12);
  background: var(--bg3);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.video-play-btn {
  width: 72px;
  height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(255,107,0,0.4);
  font-size: 1.8rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-wrap:hover .video-play-btn {
  transform: scale(1.08);
  box-shadow: 0 0 45px rgba(255,107,0,0.6);
}
.video-label { font-size: 0.88rem; color: var(--text-muted); }

/* ─── FOR WHOM ──────────────────────────────────────────── */
.for-section { background: var(--bg2); }
.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.for-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.for-card--yes { border-color: rgba(72,210,120,0.3); }
.for-card--no  { border-color: rgba(255,80,80,0.2); }
.for-card__header {
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.for-card--yes .for-card__header { color: #48D278; }
.for-card--no  .for-card__header { color: #FF5050; }
.for-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.for-card ul li {
  font-size: 0.9rem;
  color: var(--text-dim);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.45;
}
.for-card ul li::before {
  content: '→';
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── BENEFITS ──────────────────────────────────────────── */
.benefits { text-align: center; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.benefit-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s;
}
.benefit-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-3px);
}
.benefit-icon  { font-size: 2rem; margin-bottom: 14px; }
.benefit-title { font-weight: 700; font-size: 0.97rem; margin-bottom: 8px; color: var(--text); }
.benefit-desc  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.55; }

/* ─── CURRICULUM ────────────────────────────────────────── */
.curriculum { background: var(--bg2); text-align: center; }
.module-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.module-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.module-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.module-header:hover { background: rgba(255,255,255,0.03); }
.module-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--orange-glow);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.module-title   { font-weight: 600; font-size: 0.95rem; text-align: left; flex: 1; }
.module-lessons { font-size: 0.78rem; color: var(--text-muted); white-space: nowrap; }
.module-body {
  padding: 0 22px 18px 70px;
  display: none;
}
.module-body.open { display: block; }
.module-lessons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.module-lessons-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.module-lessons-list li::before {
  content: '▸';
  color: var(--orange);
  font-size: 0.7rem;
}

/* ─── INSTRUCTOR ────────────────────────────────────────── */
.instructor { text-align: center; }
.instructor-card {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.instructor-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--bg4);
  border: 3px solid var(--orange);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}
.instructor-name { font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.instructor-role { font-size: 0.83rem; color: var(--orange); font-weight: 600; margin-bottom: 14px; letter-spacing: 0.04em; }
.instructor-bio  { font-size: 0.93rem; color: var(--text-dim); line-height: 1.65; }
.instructor-stats { display: flex; gap: 20px; margin-top: 18px; flex-wrap: wrap; }
.instructor-stat__num   { font-weight: 800; font-size: 1.1rem; color: var(--orange); }
.instructor-stat__label { font-size: 0.72rem; color: var(--text-muted); }

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testimonials { background: var(--bg2); text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 4rem;
  color: rgba(255,107,0,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars  { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-text   { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  border: 2px solid var(--border);
}
.testimonial-name { font-weight: 700; font-size: 0.85rem; }
.testimonial-city { font-size: 0.75rem; color: var(--text-muted); }

/* ─── VALUE STACK ───────────────────────────────────────── */
.value-stack { text-align: center; }
.value-list {
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 22px;
  gap: 16px;
}
.value-item__left  { display: flex; align-items: center; gap: 12px; }
.value-item__icon  { font-size: 1.2rem; }
.value-item__name  { font-weight: 600; font-size: 0.93rem; }
.value-item__price { font-weight: 800; color: var(--orange); white-space: nowrap; font-size: 0.95rem; }
.value-total {
  background: rgba(255,107,0,0.06);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius);
  padding: 20px 22px;
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.value-total__label { font-weight: 700; font-size: 1rem; color: var(--text); }
.value-total__price { text-decoration: line-through; color: var(--text-muted); font-size: 0.88rem; }

/* ─── PRICING ───────────────────────────────────────────── */
.pricing { background: var(--bg2); text-align: center; }
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg3);
  border: 2px solid rgba(255,107,0,0.4);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 0 60px rgba(255,107,0,0.1);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-from        { font-size: 0.83rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 6px; }
.pricing-price       { font-family: 'Sora', sans-serif; font-size: 3.4rem; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 6px; }
.pricing-price sup   { font-size: 1.4rem; vertical-align: super; color: var(--text-dim); }
.pricing-installment { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }
.pricing-features    { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-dim); }
.pricing-features li::before { content: '✓'; color: #48D278; font-weight: 700; flex-shrink: 0; }
.pricing-trust       { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: center; gap: 20px; font-size: 0.8rem; color: var(--text-muted); flex-wrap: wrap; }

/* ─── GUARANTEE ─────────────────────────────────────────── */
.guarantee { text-align: center; }
.guarantee-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg3);
  border: 1px solid rgba(72,210,120,0.25);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
}
.guarantee-icon  { font-size: 3rem; flex-shrink: 0; }
.guarantee-title { font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; color: #48D278; }
.guarantee-text  { font-size: 0.9rem; color: var(--text-dim); line-height: 1.65; }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq { background: var(--bg2); text-align: center; }
.faq-list { max-width: 660px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.93rem;
  gap: 12px;
  text-align: left;
  transition: background 0.15s;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-arrow { color: var(--orange); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 22px 18px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; text-align: left; }
.faq-item.open .faq-answer { display: block; }

/* ─── FINAL CTA ─────────────────────────────────────────── */
.final-cta { text-align: center; position: relative; overflow: hidden; }
.final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.final-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.final-stat__num   { font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--orange); }
.final-stat__label { font-size: 0.78rem; color: var(--text-muted); }

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: #080808;
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
}
footer p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; }
footer a { color: var(--orange); }
footer a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   SEÇÃO: O QUE VOCÊ VAI APRENDER
   ═══════════════════════════════════════════════════════ */
.learn-section { background: var(--bg2); }

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.learn-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

/* spotlight que segue o mouse — controlado via JS */
.learn-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,107,0,0.07) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.learn-card:hover {
  border-color: rgba(255,107,0,0.55);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255,107,0,0.12), 0 2px 8px rgba(0,0,0,0.4);
}
.learn-card:hover::after { opacity: 1; }

.learn-card__icon {
  width: 46px;
  height: 46px;
  background: var(--orange-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--orange);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.learn-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.learn-card:hover .learn-card__icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.1) rotate(-4deg);
}

.learn-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.learn-card:hover .learn-card__title { color: #fff; }

.learn-card__desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  transition: color 0.3s ease;
}
.learn-card:hover .learn-card__desc { color: var(--text-dim); }

/* stagger de entrada (controlado via JS com classe .card-visible) */
.learn-card {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.learn-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}
.learn-card.card-visible:hover { transform: translateY(-5px); }


/* ═══════════════════════════════════════════════════════
   HOVER ENHANCEMENTS — elementos existentes
   ═══════════════════════════════════════════════════════ */

/* Benefit cards */
.benefit-card {
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
  border-color: rgba(255,107,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(255,107,0,0.1);
}
.benefit-card:hover .benefit-icon { transform: scale(1.15); }
.benefit-icon { display: inline-block; transition: transform 0.3s ease; }

/* Testimonial cards */
.testimonial-card {
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  border-color: rgba(255,107,0,0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,107,0,0.08);
}

/* Pain list items */
.pain__list li {
  transition: border-color 0.3s ease, background 0.3s ease;
}
.pain__list li:hover {
  border-color: rgba(255,107,0,0.3);
  background: var(--bg4);
}

/* Value items */
.value-item {
  transition: background 0.25s ease, border-color 0.25s ease;
}
.value-item:hover {
  background: var(--bg4);
  border-color: rgba(255,107,0,0.25);
}

/* Module header */
.module-header {
  transition: background 0.25s ease;
}
.module-header:hover { background: var(--bg4); }

/* FAQ item */
.faq-question {
  transition: color 0.25s ease;
}
.faq-item:hover .faq-question { color: var(--orange); }


/* ═══════════════════════════════════════════════════════
   CURSOR GLOW (spotlight suave que segue o mouse)
   ═══════════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.035) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.08s linear, top 0.08s linear;
  will-change: left, top;
}
@media (hover: none) { .cursor-glow { display: none; } }


/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 720px) {
  .benefits-grid      { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .for-grid           { grid-template-columns: 1fr; }
  .learn-grid         { grid-template-columns: 1fr; }
  .instructor-card    { flex-direction: column; align-items: center; text-align: center; }
  .instructor-stats   { justify-content: center; }
  .guarantee-box      { flex-direction: column; align-items: center; text-align: center; }
  .value-item         { flex-direction: column; gap: 6px; align-items: flex-start; }
  .topbar__cta        { display: none; }
  .module-body        { padding-left: 22px; }
  .final-stats        { gap: 24px; }
  .pricing-trust      { flex-direction: column; align-items: center; gap: 8px; }
}

/* ─── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__title      { animation: fadeUp 0.6s ease both; }
.hero__subtitle   { animation: fadeUp 0.6s ease 0.1s both; }
.hero__cta-group  { animation: fadeUp 0.6s ease 0.2s both; }
