/* ══════════════════════════════════════════════
   ASVA Reality — Folha de Estilos Principal
   Paleta: Azul-marinho, Laranja, Branco, Cinza
══════════════════════════════════════════════ */

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

:root {
  --navy:      #0d1e3a;
  --navy-mid:  #112349;
  --navy-light:#1a3060;
  --orange:    #f47c20;
  --orange-dk: #d96510;
  --orange-lt: #ffa04a;
  --white:     #ffffff;
  --off-white: #f7f8fa;
  --gray-lt:   #eef0f4;
  --gray-mid:  #c5cad6;
  --gray-dk:   #5c6578;
  --teal:      #1a8a7a;
  --red-err:   #c0392b;
  --green:     #27ae60;
  --font-main: 'Inter', sans-serif;
  --font-head: 'Montserrat', sans-serif;
  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 24px rgba(13,30,58,.15);
  --shadow-lg: 0 12px 48px rgba(13,30,58,.22);
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-main);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── Container ────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── Utility classes ──────────────────────── */
.text-orange  { color: var(--orange); }
.highlight    { color: var(--orange); }

/* ══════════════════════════════════════════════
   BOTÕES
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  padding: .85rem 2rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.2;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(244,124,32,.4);
}
.btn--primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,124,32,.55);
}

.btn--cta {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9930 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(244,124,32,.5);
  font-size: 1.05rem;
}
.btn--cta:hover {
  background: linear-gradient(135deg, var(--orange-dk) 0%, var(--orange) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(244,124,32,.6);
}

.btn--lg  { padding: 1.1rem 2.6rem; font-size: 1rem; }
.btn--xl  { padding: 1.3rem 3rem; font-size: 1.1rem; }

/* Pulse animation */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,124,32,.55); }
  50%       { box-shadow: 0 0 0 14px rgba(244,124,32,0); }
}
.pulse { animation: pulse 2.4s infinite; }

/* CTA center wrapper */
.cta-center { text-align: center; margin-top: 2.5rem; }

/* ══════════════════════════════════════════════
   STICKY BAR MOBILE
══════════════════════════════════════════════ */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--navy);
  border-top: 3px solid var(--orange);
  box-shadow: 0 -4px 20px rgba(13,30,58,.4);
}
.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(90deg, var(--orange) 0%, #ff9930 100%);
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--white);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.sticky-btn__price {
  background: rgba(255,255,255,.2);
  padding: .15rem .6rem;
  border-radius: 4px;
  font-size: .9rem;
}
.sticky-spacer { height: 0; }

@media (max-width: 768px) {
  .sticky-bar   { display: block; }
  .sticky-spacer { height: 64px; }
}

/* ══════════════════════════════════════════════
   SECTION BASE
══════════════════════════════════════════════ */
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section--light  { background: var(--off-white); }
.section--dark   { background: #1a2640; color: var(--white); }
.section--navy   { background: var(--navy); color: var(--white); }
.section--offer  { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); }
.section--closing {
  background: linear-gradient(160deg, #0d1e3a 0%, #112349 60%, #1a3060 100%);
  color: var(--white);
}

/* Section Header */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header--light .section-title,
.section-header--light .section-subtitle { color: var(--white); }

.section-label {
  display: inline-block;
  background: rgba(244,124,32,.15);
  color: var(--orange);
  border: 1px solid rgba(244,124,32,.4);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-label--orange {
  background: rgba(244,124,32,.2);
  color: var(--orange-lt);
  border-color: rgba(244,124,32,.5);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: .75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-dk);
  margin-bottom: .5rem;
}

.section-desc {
  max-width: 650px;
  margin-inline: auto;
  color: var(--gray-dk);
  font-size: 1rem;
  line-height: 1.7;
}
.section-desc--light { color: rgba(255,255,255,.75); }

/* ══════════════════════════════════════════════
   1. HERO
══════════════════════════════════════════════ */
.hero {
  background: linear-gradient(145deg, #07112a 0%, var(--navy) 40%, #1a3060 100%);
  color: var(--white);
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(244,124,32,.12) 0%, transparent 55%),
    radial-gradient(circle at 15% 70%, rgba(26,48,96,.5) 0%, transparent 45%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(244,124,32,.2);
  border: 1px solid rgba(244,124,32,.5);
  color: var(--orange-lt);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin-bottom: 2rem;
}

/* Benefit list */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2.5rem;
}
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .97rem;
  color: rgba(255,255,255,.9);
}
.benefit-list .fa-check-circle { color: var(--orange); font-size: 1rem; flex-shrink: 0; margin-top: .2rem; }

/* CTA group */
.hero__cta-group { display: flex; flex-direction: column; align-items: flex-start; gap: .9rem; }
.hero__cta-note {
  font-size: .83rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.hero__cta-note i { color: var(--orange-lt); }

/* ── Mockup Card ─────────────────────────── */
.hero__mockup { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

.mockup-card {
  position: relative;
  transform: perspective(900px) rotateY(-8deg) rotateX(3deg);
  transition: transform .5s ease;
}
.mockup-card:hover {
  transform: perspective(900px) rotateY(-4deg) rotateX(1deg) translateY(-6px);
}

.mockup-card__cover {
  width: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.08);
}
.mockup-card__shadow {
  position: absolute;
  bottom: -18px; left: 8px; right: 8px;
  height: 30px;
  background: rgba(13,30,58,.5);
  filter: blur(14px);
  border-radius: 50%;
  z-index: -1;
}

.mockup-cover-art {
  background: linear-gradient(160deg, #0d2247 0%, #1a3060 50%, #0a1a38 100%);
  padding: 2rem 1.5rem 1.5rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .6rem;
  border: 1px solid rgba(244,124,32,.25);
}

.cover-icon-wrap {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff9930 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .3rem;
  box-shadow: 0 4px 18px rgba(244,124,32,.5);
}
.cover-icon-main { font-size: 2rem; color: var(--white); }

.cover-badge-top {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange-lt);
  background: rgba(244,124,32,.15);
  padding: .25rem .8rem;
  border-radius: 50px;
  border: 1px solid rgba(244,124,32,.3);
}

.cover-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
}
.cover-subtitle {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  font-style: italic;
}
.cover-author {
  font-size: .8rem;
  color: var(--orange-lt);
  font-weight: 600;
  margin-top: .3rem;
}
.cover-tag-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem;
  margin-top: .4rem;
}
.cover-tag {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--white);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: .2rem .6rem;
  border-radius: 4px;
}

/* Feature chips below mockup */
.mockup-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
  width: 240px;
}
.mockup-feat {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: .5rem .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.mockup-feat i { color: var(--orange-lt); font-size: .9rem; }

/* ══════════════════════════════════════════════
   PROOF STRIP
══════════════════════════════════════════════ */
.proof-strip {
  background: var(--orange);
  padding: 1.5rem 0;
}
.proof-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.proof-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  color: var(--white);
}
.proof-item strong { font-family: var(--font-head); font-size: 1.7rem; font-weight: 900; line-height: 1; }
.proof-item span   { font-size: .8rem; opacity: .9; }
.proof-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.35);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   2. IDENTIFICAÇÃO — Questions Grid
══════════════════════════════════════════════ */
.questions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}
.question-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--gray-lt);
  box-shadow: 0 2px 10px rgba(13,30,58,.06);
  transition: var(--transition);
}
.question-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(244,124,32,.12);
  transform: translateY(-2px);
}
.question-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
  opacity: .5;
  flex-shrink: 0;
  line-height: 1;
  padding-top: .1rem;
}
.question-card p { font-size: .95rem; color: var(--navy); font-weight: 500; }

.identification-text {
  background: var(--white);
  border-left: 4px solid var(--orange);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 12px rgba(13,30,58,.06);
}

/* ══════════════════════════════════════════════
   3. DOR — Pain Scene
══════════════════════════════════════════════ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.scene-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.scene-icon { font-size: 2rem; color: var(--orange); flex-shrink: 0; margin-top: .2rem; }
.scene-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}

.scene-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  padding-left: .5rem;
  margin-bottom: 1.5rem;
}
.scene-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .97rem;
  color: rgba(255,255,255,.85);
}
.scene-list .fa-circle-dot { color: rgba(244,124,32,.6); font-size: .7rem; margin-top: .38rem; flex-shrink: 0; }
.scene-list .fa-circle-dot.scene-climax { color: var(--orange); font-size: .9rem; }

.scene-bridge { font-size: 1rem; color: rgba(255,255,255,.78); }

/* Errors */
.errors-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f87171;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.error-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.2rem;
}
.error-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .95rem;
  color: rgba(255,255,255,.8);
}
.error-list .fa-times {
  color: #f87171;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: .2rem;
}
.errors-note { font-size: .9rem; color: rgba(255,255,255,.6); font-style: italic; }

/* Impact quote */
.impact-quote {
  border-left: 4px solid var(--orange);
  padding: 1.5rem 2rem;
  background: rgba(244,124,32,.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 700px;
  margin-inline: auto;
  position: relative;
}
.impact-quote--centered {
  text-align: center;
  border-left: none;
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  max-width: 640px;
}
.impact-quote .fa-quote-left { color: var(--orange); font-size: 1.5rem; margin-bottom: .6rem; display: block; }
.impact-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.9);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   4. SOLUÇÃO — Phase Cards
══════════════════════════════════════════════ */
.phases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.phase-card {
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  background: var(--white);
  border: 1px solid var(--gray-lt);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.phase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.phase-header {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.2rem;
}
.phase-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.phase-header h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}

.phase-card--blue  .phase-icon { background: rgba(26,48,96,.12); color: var(--navy-light); }
.phase-card--orange .phase-icon { background: rgba(244,124,32,.12); color: var(--orange); }
.phase-card--teal  .phase-icon { background: rgba(26,138,122,.12); color: var(--teal); }
.phase-card--red   .phase-icon { background: rgba(192,57,43,.12);  color: var(--red-err); }

.phase-card--blue   { border-top: 4px solid var(--navy-light); }
.phase-card--orange { border-top: 4px solid var(--orange); }
.phase-card--teal   { border-top: 4px solid var(--teal); }
.phase-card--red    { border-top: 4px solid var(--red-err); }

.phase-card ul { display: flex; flex-direction: column; gap: .5rem; }
.phase-card li {
  font-size: .9rem;
  color: var(--gray-dk);
  padding-left: 1rem;
  position: relative;
}
.phase-card li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--orange); font-weight: 700;
}

/* ══════════════════════════════════════════════
   5. TRANSFORMAÇÃO — Steps Timeline
══════════════════════════════════════════════ */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 760px;
  margin-inline: auto;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  left: 26px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(244,124,32,.2));
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0 1.5rem 0;
  position: relative;
}

.step-circle {
  width: 54px; height: 54px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange) 0%, #ff9930 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(244,124,32,.5);
  z-index: 1;
  transition: var(--transition);
}
.step-item:hover .step-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(244,124,32,.65);
}

.step-body {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
}
.step-body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--orange-lt);
  margin-bottom: .4rem;
}
.step-body p { font-size: .93rem; color: rgba(255,255,255,.75); line-height: 1.6; }

/* ══════════════════════════════════════════════
   6. LIÇÕES — Lessons Grid
══════════════════════════════════════════════ */
.lessons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.3rem;
  margin-bottom: 2.5rem;
}

.lesson-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  border: 1px solid var(--gray-lt);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.lesson-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 100%);
}
.lesson-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.lesson-card:hover::before {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-lt) 100%);
}

.lesson-card--featured {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-color: var(--orange);
}
.lesson-card--featured::before { background: var(--orange); }
.lesson-card--featured h3 { color: var(--orange-lt); }

.lesson-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  opacity: .2;
  line-height: 1;
  margin-bottom: .4rem;
}
.lesson-card--featured .lesson-num { opacity: .35; color: var(--orange-lt); }

.lesson-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .9rem;
}

.lesson-card ul { display: flex; flex-direction: column; gap: .4rem; }
.lesson-card li {
  font-size: .88rem;
  color: var(--gray-dk);
  padding-left: 1rem;
  position: relative;
}
.lesson-card li::before { content: '·'; position: absolute; left: 0; color: var(--orange); font-size: 1.2rem; line-height: .9; }
.lesson-card--featured li { color: rgba(255,255,255,.75); }
.lesson-card--featured li::before { color: var(--orange-lt); }

/* SRI steps */
.sri-steps {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.sri-steps span {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.sri-steps span::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Bônus card */
.bonus-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 6px 28px rgba(244,124,32,.2);
}
.bonus-badge {
  background: var(--orange);
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .4rem 1rem;
  border-radius: 50px;
  display: flex; align-items: center; gap: .4rem;
  white-space: nowrap;
  align-self: flex-start;
}
.bonus-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  flex: 1;
  min-width: 150px;
}
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 2;
  min-width: 200px;
}
.bonus-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  color: rgba(255,255,255,.85);
}
.bonus-list .fa-check { color: var(--orange); }

/* ══════════════════════════════════════════════
   7. DIFERENCIAL — Dimensions
══════════════════════════════════════════════ */
.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.dimension-card {
  text-align: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}
.dimension-card:hover {
  background: rgba(255,255,255,.09);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.dim-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff9930 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 18px rgba(244,124,32,.4);
}
.dimension-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .6rem;
}
.dimension-card p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.55; }

/* ══════════════════════════════════════════════
   8. CHECKLIST
══════════════════════════════════════════════ */
.checklist-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.checklist-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-lt);
}
.checklist-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 1.2rem 1.8rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--white);
}
.checklist-header i { font-size: 1.3rem; color: var(--orange-lt); }
.checklist-header h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 800; }

.checklist-items {
  padding: 1.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  cursor: pointer;
  padding: .5rem .6rem;
  border-radius: 8px;
  transition: background .2s;
}
.check-item:hover { background: var(--off-white); }
.check-item input[type="checkbox"] { display: none; }
.checkmark {
  width: 22px; height: 22px;
  border: 2px solid var(--gray-mid);
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
}
.check-item input:checked + .checkmark {
  background: var(--orange);
  border-color: var(--orange);
}
.check-item input:checked + .checkmark::after {
  content: '✓';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
}
.check-item span:last-child {
  font-size: .92rem;
  color: var(--navy);
  transition: color .2s;
}
.check-item:has(input:checked) span:last-child {
  color: var(--gray-dk);
  text-decoration: line-through;
  opacity: .7;
}

/* Progress */
.checklist-progress {
  padding: 1rem 1.8rem 1.5rem;
  border-top: 1px solid var(--gray-lt);
}
.progress-bar {
  background: var(--gray-lt);
  border-radius: 50px;
  height: 8px;
  overflow: hidden;
  margin-bottom: .5rem;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-lt) 100%);
  border-radius: 50px;
  transition: width .4s ease;
}
.progress-label { font-size: .82rem; color: var(--gray-dk); }

.checklist-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.checklist-text p { font-size: 1rem; color: var(--gray-dk); line-height: 1.7; }

/* ══════════════════════════════════════════════
   9. BENEFÍCIOS
══════════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: .85rem;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .9rem 1.2rem;
  font-size: .93rem;
  color: rgba(255,255,255,.88);
  transition: var(--transition);
}
.benefit-item:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(244,124,32,.4);
}
.benefit-item .fa-check-circle { color: var(--orange); font-size: 1rem; flex-shrink: 0; margin-top: .15rem; }

/* ══════════════════════════════════════════════
   10 & 11. PARA QUEM
══════════════════════════════════════════════ */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.audience-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.audience-card--yes {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-top: 4px solid var(--green);
}
.audience-card--no {
  background: var(--off-white);
  border: 1px solid var(--gray-lt);
  border-top: 4px solid var(--red-err);
}

.audience-header {
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: 1.4rem;
}
.audience-card--yes .audience-header i { color: var(--green); font-size: 1.4rem; }
.audience-card--no  .audience-header i { color: var(--red-err); font-size: 1.4rem; }
.audience-header h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}

.audience-card ul { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.5rem; }
.audience-card li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .93rem; color: var(--navy);
}
.audience-card--yes li .fa-check { color: var(--green); flex-shrink: 0; }
.audience-card--no  li .fa-times { color: var(--red-err); flex-shrink: 0; }

.audience-ideal {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
}
.audience-ideal h4 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: .7rem; }
.audience-ideal li { font-size: .88rem; gap: .5rem; }
.audience-ideal .fa-arrow-right { color: var(--orange); font-size: .8rem; flex-shrink: 0; }

.aviso-card {
  background: rgba(192,57,43,.06);
  border: 1px solid rgba(192,57,43,.2);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex;
  gap: .8rem;
  font-size: .88rem;
  color: var(--navy);
  line-height: 1.6;
}
.aviso-card i { color: var(--red-err); flex-shrink: 0; margin-top: .15rem; }

/* ══════════════════════════════════════════════
   12. AUTORIDADE
══════════════════════════════════════════════ */
.author-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
}

.author-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.author-avatar-inner {
  width: 170px; height: 170px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-light), #2a4a80);
  border: 4px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(244,124,32,.3);
  overflow: hidden;
}
.author-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.author-avatar-icon { font-size: 4.5rem; color: rgba(255,255,255,.5); }

.author-credentials {
  text-align: center;
}
.author-credentials span { display: block; font-weight: 700; color: var(--white); font-size: 1rem; }
.author-credentials small { color: var(--orange-lt); font-size: .83rem; }

.author-stats {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  width: 100%;
  padding-top: .5rem;
}
.author-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .7rem 1.2rem;
  text-align: center;
}
.author-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange-lt);
}
.author-stat span { font-size: .8rem; color: rgba(255,255,255,.65); }

.author-name {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin: .6rem 0 1rem;
}
.author-bio { font-size: .97rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 1.5rem; }

.author-references h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--orange-lt);
  margin-bottom: .8rem;
  display: flex; align-items: center; gap: .5rem;
}
.author-references ul { display: flex; flex-direction: column; gap: .5rem; }
.author-references li {
  display: flex; align-items: center; gap: .7rem;
  font-size: .9rem; color: rgba(255,255,255,.75);
}
.author-references .fa-dot-circle { color: var(--orange); font-size: .7rem; }

/* ══════════════════════════════════════════════
   13. OFERTA
══════════════════════════════════════════════ */
.offer-wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.offer-includes h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .6rem;
}
.includes-list { display: flex; flex-direction: column; gap: .75rem; }
.includes-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .97rem; color: rgba(255,255,255,.88);
}
.includes-list .fa-check-circle { color: var(--orange-lt); flex-shrink: 0; margin-top: .15rem; }

.offer-price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.2rem;
  text-align: center;
  box-shadow: 0 12px 48px rgba(0,0,0,.3);
  width: 320px;
  flex-shrink: 0;
  border: 2px solid var(--orange);
}

.offer-badge-top {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--orange);
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.price-from {
  font-size: .95rem;
  color: var(--gray-dk);
  margin-bottom: .2rem;
}
.price-from span {
  text-decoration: line-through;
  color: var(--red-err);
  font-weight: 700;
}

.price-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: .1rem;
  margin-bottom: .3rem;
  line-height: 1;
}
.price-main small:first-child { font-size: .85rem; color: var(--gray-dk); align-self: flex-start; padding-top: .6rem; }
.price-main strong {
  font-family: var(--font-head);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.price-main .price-currency { font-size: 1.5rem; font-weight: 800; color: var(--navy); align-self: flex-start; padding-top: .8rem; }

.price-installment { font-size: .82rem; color: var(--gray-dk); margin-bottom: 1.8rem; }

.offer-trust {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 1.5rem;
}
.offer-trust span {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  font-size: .82rem; color: var(--gray-dk);
}
.offer-trust i { color: var(--green); }

/* ══════════════════════════════════════════════
   14. GARANTIA
══════════════════════════════════════════════ */
.guarantee-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 2px dashed var(--gray-mid);
  box-shadow: var(--shadow);
  max-width: 820px;
  margin-inline: auto;
}

.guarantee-icon {
  position: relative;
  width: 110px; height: 110px;
  flex-shrink: 0;
}
.guarantee-icon i {
  font-size: 6.5rem;
  color: var(--orange);
  display: block;
}
.guarantee-icon span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -42%);
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

.guarantee-text h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .8rem;
}
.guarantee-text p { font-size: .95rem; color: var(--gray-dk); line-height: 1.7; margin-bottom: 1.5rem; }

/* ══════════════════════════════════════════════
   15. FAQ
══════════════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-lt);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13,30,58,.05);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: background .2s;
}
.faq-question:hover { background: var(--off-white); }
.faq-question[aria-expanded="true"] { color: var(--orange); background: var(--off-white); }

.faq-icon {
  color: var(--orange);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.faq-answer.open {
  max-height: 400px;
}
.faq-answer p {
  padding: 0 1.5rem 1.2rem;
  font-size: .93rem;
  color: var(--gray-dk);
  line-height: 1.7;
  border-top: 1px solid var(--gray-lt);
  padding-top: .9rem;
}

/* ══════════════════════════════════════════════
   16. FECHAMENTO
══════════════════════════════════════════════ */
.closing-content { text-align: center; max-width: 760px; margin-inline: auto; }

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 2.5rem;
}

.closing-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .8rem;
  margin-bottom: 2.5rem;
  text-align: left;
}
.closing-step {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .8rem 1.1rem;
  font-size: .93rem;
  color: rgba(255,255,255,.88);
  font-weight: 500;
}
.closing-step .fa-check { color: var(--orange); flex-shrink: 0; }

.closing-desc { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 1.8rem; }

.final-quote {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: rgba(255,255,255,.85);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.final-quote strong { color: var(--orange-lt); }

.closing-trust {
  margin-top: 1.5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .3rem 1rem;
  align-items: center;
}
.closing-trust i { color: var(--orange-lt); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: #050e1f;
  color: rgba(255,255,255,.6);
  padding: 3rem 0 1.5rem;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .6rem;
}
.footer-logo i { color: var(--orange); font-size: 1.3rem; }
.footer__brand p { font-size: .85rem; line-height: 1.6; max-width: 280px; }
.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer__links a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer__links a:hover { color: var(--orange); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.2rem;
  font-size: .8rem;
  text-align: center;
  color: rgba(255,255,255,.35);
}

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

/* Tablet — ≤ 960px */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 1; }
  .hero__mockup  { order: 2; }
  .hero__cta-group { align-items: center; }
  .hero__sub { margin-inline: auto; }
  .benefit-list { display: inline-flex; text-align: left; }

  .pain-grid { grid-template-columns: 1fr; }
  .offer-wrapper { grid-template-columns: 1fr; }
  .offer-price-card { width: 100%; }
  .audience-grid { grid-template-columns: 1fr; }
  .author-grid { grid-template-columns: 1fr; }
  .author-photo-col { display: flex; flex-direction: row; align-items: flex-start; gap: 2rem; flex-wrap: wrap; justify-content: center; }
  .author-stats { flex-direction: row; width: auto; }
  .checklist-wrapper { grid-template-columns: 1fr; }
}

/* Mobile — ≤ 640px */
@media (max-width: 640px) {
  .mockup-card__cover { width: 200px; }
  .mockup-features { width: 200px; }
  .proof-strip__inner { gap: 1rem; }
  .proof-divider { display: none; }
  .guarantee-card { flex-direction: column; text-align: center; padding: 2rem 1.5rem; gap: 1.5rem; }
  .bonus-card { flex-direction: column; }
  .steps-timeline::before { display: none; }
  .author-stats { flex-direction: column; }
  .closing-steps { grid-template-columns: 1fr; }
  .dimensions-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 440px) {
  .dimensions-grid { grid-template-columns: 1fr; }
}
