:root {
  --black: #111111;
  --white: #ffffff;
  --orange: #F67701;
  --purple: #8E5AFF;
  --blue-light: #8EDEFF;
  --pink: #FF69B4;
  --cyan: #00B4D8;
  --yellow: #FAD337;
  --gold: #FFD700;
  --green: #50BB85;
  --green-price: #36BF13;
  --red: #ED1C25;
  --red-stat: #E63946;
  --blue-num: #039CDC;
  --gray: #555555;
  --gray-light: #6b6b6b;
  --pale-yellow: #FFF2A9;
  --pale-yellow-2: #FFF1A9;
  --pricing-bg: #FAFAFA;
  --mint: #97FDC9;

  --radius: 16px;
  --shadow-hard: 6px 6px 0 var(--black);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  padding-top: 92px;
}

#page-wrap { overflow-x: hidden; width: 100%; position: relative; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 640px; }
.container.center { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }

.section { padding: 64px 0; position: relative; scroll-margin-top: 100px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.section-sub { color: var(--gray); font-size: 18px; }

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
h1 { font-size: 44px; line-height: 1.15; }
h2 { font-size: 32px; line-height: 1.25; }
h3 { font-size: 20px; }
h4 { font-size: 18px; text-transform: none; letter-spacing: 0; font-weight: 700; }

p { color: var(--gray); }
strong { color: var(--black); }

/* Backgrounds */
.bg-blue-radial {
  background: radial-gradient(ellipse 140% 100% at 50% 100%, #17BBFF 0%, #35C4FF 25%, #53CDFF 50%, #70D5FF 75%, #8EDEFF 100%);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--white);
}
.badge-blue { background: #8EDEFF; color: var(--black); }
.badge-pink { background: var(--pink); }
.badge-cyan { background: var(--cyan); }
.badge-white { background: #FEFEFE; color: var(--black); border: 2px solid #eee; }
.badge-yellow { background: var(--yellow); color: var(--black); }
.badge-purple { background: var(--purple); }
.badge-gold { background: var(--gold); color: var(--black); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 3px solid var(--black);
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 0 var(--black);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--purple);
  transform: translateY(100%);
  transition: transform .35s ease;
  z-index: -1;
}
.btn-primary:hover::before,
.btn-primary:active::before { transform: translateY(0); }
.btn-primary:hover, .btn-primary:active { transform: translateY(6px); box-shadow: 0 0 0 var(--black); }
.btn-large { padding: 18px 36px; font-size: 16px; line-height: 1.3; text-align: center; }
.btn-small { padding: 10px 22px; font-size: 14px; box-shadow: 0 4px 0 var(--black); }
.btn-small:hover, .btn-small:active { transform: translateY(4px); box-shadow: 0 0 0 var(--black); }
.btn-block { width: 100%; max-width: 400px; }

.center-cta { text-align: center; margin-top: 48px; }

/* Section dividers (exact PNGs exported from Figma) */
.divider { display: block; width: 100%; height: auto; }

/* Floating star mascots between sections */
.divider-wrap { position: relative; }
.floating-star, .floating-icon {
  position: absolute; z-index: 5; pointer-events: none;
  transform: rotate(var(--rot, 0deg)) translateY(var(--py, 0px));
  will-change: transform;
}
.floating-star { width: 90px; height: auto; }
.floating-star-autoridade { left: 4%; top: -90px; }
.floating-star-metodo-left { left: 1.6%; top: -45px; width: 9%; min-width: 90px; max-width: 174px; }
.floating-star-metodo-right { right: -1%; top: 63%; width: 18%; min-width: 160px; max-width: 345px; bottom: auto; }

.floating-icon { width: 130px; height: auto; }
.floating-icon-turma-top { right: auto; left: 78.6%; top: -156px; width: 14.8%; min-width: 140px; max-width: 284px; --rot: 8deg; }
.floating-icon-turma-bottom { left: 10%; bottom: auto; top: 77%; width: 18.5%; min-width: 160px; max-width: 356px; --rot: -6deg; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 50;
  background: #FEFEFE;
  border-bottom: 1px solid var(--black);
  border-radius: 0 0 32px 32px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; gap: 24px; max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.logo-img { height: 56px; width: auto; flex-shrink: 0; }
.logo-img-desktop { display: none; }
.logo-img-mobile { display: block; height: 34px; }
.header-nav { display: none; gap: 32px; }
.header-nav a { color: var(--black); text-decoration: none; font-weight: 600; font-size: 15px; }
.header-nav a:hover { color: var(--orange); }

/* Hamburger button (mobile only) */
.hamburger-btn {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: 2px solid var(--black); border-radius: 10px;
  cursor: pointer; flex-shrink: 0;
}
.hamburger-btn span { width: 20px; height: 2px; background: var(--black); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.site-header.nav-open .hamburger-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .hamburger-btn span:nth-child(2) { opacity: 0; }
.site-header.nav-open .hamburger-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height .3s ease, padding .3s ease;
}
.mobile-nav a:not(.btn) {
  color: var(--black); text-decoration: none; font-weight: 600; font-size: 16px;
  padding: 14px 4px; border-bottom: 1px solid #eee;
}
.mobile-nav .btn { margin: 16px 0 20px; }
.site-header.nav-open .mobile-nav { max-height: 400px; padding: 8px 20px 0; }

.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(17,17,17,0.4);
  z-index: 49;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.mobile-nav-overlay.show { display: block; opacity: 1; pointer-events: auto; }

/* Hero */
.hero { padding: 64px 0; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.hero-copy .lead { font-size: 18px; max-width: 520px; color: var(--gray); }
.microcopy { font-size: 14px; font-weight: 700; color: var(--black); display: flex; align-items: center; gap: 8px; }
.check-icon { width: 16px; height: 16px; }

.hero-visual { position: relative; aspect-ratio: 1 / 1; width: 100%; max-width: 500px; margin: 0 auto; }
.hero-video-frame {
  position: absolute;
  top: 0; left: 0;
  width: 54%;
  aspect-ratio: 335/431;
  border: 4px solid var(--black);
  border-radius: 20px;
  box-shadow: var(--shadow-hard);
  background: #000;
  overflow: hidden;
  z-index: 1;
}
.hero-video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
/* Hide Safari/iOS native play-button overlay on autoplay/loop background videos */
.hero-video-frame video::-webkit-media-controls-start-playback-button,
.faq-video-wrap video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.hero-video-frame video::-webkit-media-controls,
.faq-video-wrap video::-webkit-media-controls {
  display: none !important;
}
.hero-front-img {
  position: absolute;
  bottom: 0; right: 0;
  width: 92%;
  z-index: 2;
}

/* Dor */
.dor { padding: 48px 0; }
.dor-illustration { display: block; width: 100%; max-width: 331px; margin: 0 auto; border-radius: 20px; }
.dor-layout { display: flex; flex-direction: column; align-items: center; gap: 24px; margin-bottom: 40px; }
.pain-col { display: flex; flex-direction: column; gap: 32px; width: 100%; }
.pain-col-left, .pain-col-right { order: 2; }
.dor-illustration { order: 1; }
/* Shared expand/accordion system: pain cards (Dor) + FAQ items */
.expand-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}
.expand-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  color: var(--black);
  cursor: pointer;
}
.expand-question p, .expand-question span:first-child { color: var(--black); font-weight: 500; }
.expand-toggle {
  flex-shrink: 0; width: 45px; height: 45px;
  border-radius: 999px;
  background: var(--green);
  border: 3px solid var(--black);
  color: var(--white); font-weight: 900; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s ease;
}
.expand-card.open .expand-toggle { background: var(--red-stat); }
.expand-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 20px; }
.expand-card.open .expand-answer { max-height: 260px; padding-bottom: 20px; }
.expand-answer p { font-size: 14px; color: var(--gray); }
.dor-close { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; max-width: 500px; margin: 0 auto; }
.dor-close p { font-size: 16px; font-weight: 600; color: var(--black); }

/* Dados de mercado */
.dados { background: var(--pale-yellow); border-top: 3px solid var(--black); border-bottom: 3px solid var(--black); padding: 48px 0; position: relative; overflow: visible; }
.dados-inner { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.dados-chart-wrap { position: relative; width: 100%; max-width: 335px; }
.dados-chart {
  width: 100%;
  border-radius: 16px;
  animation: float-updown 4s ease-in-out infinite;
}
@keyframes float-updown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.tag-25-img { position: absolute; top: -34%; left: -14%; width: 62%; z-index: 2; }
.dados-copy { max-width: 600px; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.dados-copy h2 { font-size: 24px; }
.dados-copy p { font-size: 14px; }
.footnote { font-size: 12px; color: #5d5d5d; max-width: 600px; margin-top: 12px; }
.btn-nowrap { max-width: 100%; }
@media (min-width: 901px) {
  .btn-nowrap { white-space: nowrap; width: auto; max-width: none; padding-left: 32px; padding-right: 32px; }
}
.stat-star { position: absolute; top: -70px; left: 10%; width: 190px; text-align: center; }
.stat-star-svg { width: 100%; position: absolute; top: 0; left: 0; z-index: 0; transform: rotate(-20deg); }
.stat-star span { position: relative; z-index: 1; display: block; }
.stat-number { font-size: 28px; font-weight: 900; color: var(--red-stat); margin-top: 58px; }
.stat-label { font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px; color: var(--black); padding: 0 20px; }

/* Autoridade */
.autoridade { background: #FEFEFE; }
.autoridade-grid { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.autoridade-copy { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
.autoridade-copy h2 { font-size: 24px; }
.autoridade-copy p { font-size: 14px; max-width: 500px; }
.video-frame-wrap { position: relative; width: 100%; max-width: 500px; margin-top: 24px; }
.video-frame {
  width: 100%;
  aspect-ratio: 335/574;
  border: 4px solid var(--black);
  border-radius: 20px;
  box-shadow: var(--shadow-hard);
  background: #000;
  overflow: hidden;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.instructor-card {
  position: absolute; bottom: 22%; left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 4px;
  width: 80%;
  max-width: 260px;
  text-align: left;
  z-index: 2;
}
.instructor-card strong { font-size: 20px; }
.instructor-card span { color: var(--gray-light); font-size: 14px; }

/* Metodologia */
.metodologia { background: var(--blue-light); border-bottom: 3px solid var(--black); position: relative; overflow: hidden; padding-top: 100px; }
.steps-wrap { position: relative; }
.steps-connector {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }
.step-card {
  background: var(--white); border: 3px solid var(--black); border-radius: var(--radius); box-shadow: var(--shadow-hard); padding: 20px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 45px; height: 45px; border-radius: 999px;
  border: 3px solid var(--black);
  color: var(--white); font-weight: 900; font-size: 20px; margin-bottom: 16px;
}
.step-num-1 { background: var(--red); }
.step-num-2 { background: var(--orange); }
.step-num-3 { background: var(--blue-num); }
.step-num-4 { background: var(--green); }
.step-num-5 { background: var(--blue-num); }
.step-num-6 { background: var(--orange); }
.step-card h3 { margin-bottom: 8px; }
.step-card p { font-size: 15px; }

/* Conteudo / Modules */
.conteudo { background: var(--white); }
.conteudo-layout { display: flex; flex-direction: column; gap: 40px; }
.modules-list { display: flex; flex-direction: column; }
.module-item { display: flex; gap: 12px; align-items: flex-start; padding: 16px 0; border-bottom: 1.5px solid #e4e4e4; break-inside: avoid; }
.module-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 999px;
  background: var(--blue-num); color: var(--white); font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.module-item h4 { margin-bottom: 4px; color: var(--black); }
.module-item p { font-size: 15px; }

.bonus-wrapper { position: relative; width: 100%; max-width: 400px; margin: 0 auto; overflow: visible; }
.bonus-card {
  background: var(--mint);
  border: 4px solid var(--black);
  border-radius: 24px;
  box-shadow: var(--shadow-hard);
  padding: 32px 24px;
}
.gift-box-img { position: absolute; bottom: 20px; right: -20px; width: 130px; height: 130px; z-index: 3; transform: rotate(6deg); }
.bonus-card h3 { font-size: 22px; margin-bottom: 16px; }
.bonus-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.bonus-card li { color: var(--black); font-size: 16px; }
.bonus-value {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%;
  background: var(--gold); color: var(--black);
  font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 16px; border-radius: 999px;
  border: 3px solid var(--black);
}

/* Turma Fundadora */
.turma-fundadora { background: var(--purple); }
.turma-fundadora h2 { color: var(--white); margin: 16px 0; font-size: 24px; }
.turma-fundadora p { color: var(--white); font-size: 14px; max-width: 560px; }

/* Preco */
.preco { background: var(--white); overflow: hidden; }
.floating-star-preco-left { left: 1%; top: -8%; width: 10%; min-width: 90px; max-width: 180px; }
.floating-star-preco-right { left: auto; top: auto; right: 4%; bottom: 6%; width: 11.8%; min-width: 100px; max-width: 226px; }
.pricing-card-wrap { position: relative; width: 100%; max-width: 440px; margin: 0 auto; }
.vagas-badge-img { position: absolute; top: -64px; right: -60px; width: 140px; z-index: 3; transform: rotate(8deg); }
.pricing-card {
  background: var(--pricing-bg);
  border: 3px solid var(--black);
  border-radius: 24px;
  box-shadow: var(--shadow-hard);
  padding: 24px 16px;
  max-width: 440px;
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.value-stack { text-align: center; }
.value-stack .strike { font-size: 14px; color: var(--black); opacity: 0.6; text-decoration: line-through; }
.total-real { font-weight: 700; color: var(--orange) !important; opacity: 1 !important; text-decoration: none !important; margin-top: 8px !important; font-size: 18px; }
.pricing-card hr { border: none; border-top: 2px dashed var(--black); width: 100%; }
.price-highlight { text-align: center; }
.price-highlight span { display: block; font-weight: 700; font-size: 18px; color: var(--black); }
.price-highlight strong { display: block; font-size: 44px; font-weight: 900; color: var(--green-price); line-height: 1.3; }
.pricing-card .microcopy { font-size: 12px; opacity: 0.8; text-align: center; font-weight: 400; justify-content: center; }

/* Garantia */
.garantia { background: var(--pale-yellow-2); padding: 48px 0; }
.garantia-grid { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.seal-img { width: 194px; height: 194px; flex-shrink: 0; }
.garantia-copy h2 { font-size: 24px; }
.garantia-copy p { font-size: 14px; max-width: 500px; }

/* FAQ */
.faq { background: var(--white); }
.faq-layout { display: flex; flex-direction: column; gap: 32px; }
.faq-video-wrap {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  flex-shrink: 0;
}
.faq-video-wrap video { width: 100%; height: auto; display: block; pointer-events: none; }
.faq-questions { flex: 1; min-width: 0; }
.faq-list { display: flex; flex-direction: column; gap: 16px; }

/* Final CTA */
.final-cta { padding: 64px 0; }
.final-cta h2 { color: var(--black); font-size: 24px; }
.final-lead { color: var(--black); font-size: 14px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 4px; font-weight: 400; color: var(--black); font-size: 14px; }
.ps { font-size: 12px; color: var(--black); max-width: 300px; }

/* Footer */
.site-footer { background: var(--black); padding: 40px 0; }
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.footer-logo { width: 99px; height: auto; }
.kiwify-badge { height: 20px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand strong { color: var(--white); font-size: 14px; }
.footer-brand span { font-size: 12px; color: var(--white); opacity: 0.6; }
.disclaimer { font-size: 11px; color: var(--white); opacity: 0.4; max-width: 640px; }

/* ============ RESPONSIVE (matches Figma 375px mobile frame) ============ */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .section { padding: 48px 0; }
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }

  .hero { padding: 40px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { order: -1; max-width: 320px; }
  .hero-copy { align-items: center; text-align: center; }
  .hero-copy .lead { max-width: 100%; }
  .btn-large { width: 100%; max-width: 400px; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .step-card { padding: 14px; }
  .step-card h3 { font-size: 16px; }
  .step-card p { font-size: 13px; }
  .step-num { width: 36px; height: 36px; font-size: 16px; margin-bottom: 10px; }
  .modules-list { grid-template-columns: 1fr; }
  .header-inner { padding-top: 18px; padding-bottom: 18px; padding-left: 20px; padding-right: 20px; }
  .header-inner .logo-img { height: 52px; }
  .floating-star { width: 56px; }
  .floating-star-metodo-left { top: -50px; left: 16px; }
  .floating-star-metodo-right { display: block; width: 64px; right: -10px; top: auto; bottom: -64px; }
  .metodologia { padding-top: 64px; }

  /* Header: flat bar + hamburger menu */
  .site-header { border-radius: 0; }
  .header-cta { display: none; }
  .hamburger-btn { display: flex; }

  /* Floating icons: repositioned/resized for mobile so nothing overlaps content */
  .gift-box-img { width: 140px; height: 140px; top: auto; bottom: 12px; right: -16px; }
  .vagas-badge-img { width: 120px; top: -104px; right: 2px; }
  .floating-icon-turma-top { width: 90px; min-width: 0; top: -34px; left: auto; right: 4%; }
  .floating-icon-turma-bottom { width: 140px; min-width: 0; bottom: -34px; left: -46px; top: auto; }
  .floating-star-preco-left { display: none; }
  .floating-star-preco-right { width: 60px; min-width: 0; right: -26px; bottom: -34px; left: auto; top: auto; }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .container { padding: 0 32px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ DESKTOP: side-by-side layouts matching Figma desktop frame ============ */
@media (min-width: 901px) {
  .header-nav { display: flex; }

  /* Menu Flutuante Desk: floats with a gap from the top, fully rounded, over content */
  body { padding-top: 104px; }
  .section { scroll-margin-top: 140px; }
  .site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    border: 3px solid var(--black);
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(17,17,17,0.16);
    overflow: visible;
  }
  .logo-img-desktop { display: block; margin-top: -30px; height: 96px; transform: rotate(-8deg); }
  .logo-img-mobile { display: none; }

  /* Dor: cards-left | image-center | cards-right */
  .dor-layout {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .pain-col { flex: 1; max-width: 340px; }
  .pain-col-left { order: 0; }
  .pain-col-right { order: 2; }
  .dor-illustration { flex: 0 0 auto; width: 331px; margin: 0; order: 1; }

  /* Dados: chart left | copy right */
  .dados-inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: center;
    gap: 60px;
    padding: 0 40px;
  }
  .dados-chart-wrap { max-width: 420px; }
  .dados-copy { text-align: left; align-items: flex-start; }
  .footnote { text-align: left; }

  /* Autoridade: copy centered | video right, name card overlapping outside the video */
  .autoridade-grid { flex-direction: row; align-items: center; gap: 64px; }
  .autoridade-copy { align-items: center; text-align: center; flex: 1; max-width: 460px; }
  .autoridade-copy p { max-width: none; }
  .video-frame-wrap { flex: 1; max-width: 420px; }
  .instructor-card { left: -32px; bottom: 24%; transform: rotate(-4deg); }

  /* Metodologia: wider gaps, no connector line */
  .steps-grid { gap: 60px 48px; }
  .steps-connector { display: none; }

  /* Bonus box: left-align button, bigger gift + VAGAS badge */
  .bonus-value { justify-content: flex-start; width: auto; }
  .gift-box-img { width: 165px; height: 165px; bottom: 24px; right: -36px; }
  .vagas-badge-img { width: 170px; top: -80px; right: -80px; }

  /* Conteudo: modules (2-col) | bonus card */
  .conteudo-layout { flex-direction: row; align-items: flex-start; gap: 48px; }
  .modules-list { flex: 2; display: block; columns: 2; column-gap: 40px; }
  .bonus-wrapper { flex: 1; margin: 0; }

  /* Garantia: seal left | copy right */
  .garantia-grid { flex-direction: row; text-align: left; justify-content: center; gap: 48px; }
  .garantia-copy { text-align: left; }
  .garantia-copy p { max-width: none; }

  /* FAQ: video left | questions right */
  .faq-layout { flex-direction: row; align-items: flex-start; gap: 48px; }
  .faq-video-wrap { margin: 0; position: sticky; top: 100px; }
}

/* ============ DESKTOP-ONLY TYPE SCALE BUMP: 16px -> 20px, 14px -> 16px ============ */
@media (min-width: 901px) {
  .btn-large,
  .expand-question,
  .dor-close p,
  .bonus-card li {
    font-size: 20px;
  }
  .btn-small,
  .microcopy,
  .expand-answer p,
  .dados-copy p,
  .autoridade-copy p,
  .instructor-card span,
  .turma-fundadora p,
  .value-stack .strike,
  .garantia-copy p,
  .final-lead,
  .checklist,
  .footer-brand strong {
    font-size: 16px;
  }
}
