/* --- FONTS --- */
@font-face {
  font-family: 'Mansfield';
  src: url('../fonts/Mansfield.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Mansfield';
  src: url('../fonts/Mansfield-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Mansfield';
  src: url('../fonts/Mansfield-Black.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-weight: 400; font-size: 16px; line-height: 1.6;
  color: var(--color-text); background: var(--color-bg); overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
a, button, [role="button"] { cursor: pointer; }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #e8d4a3, #b38f50);
  border-radius: 10px; border: 2px solid var(--color-bg);
}
::selection { background: #b38f50; color: #fff; }

/* --- LAYOUT --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; position: relative; overflow: hidden; }
.section-dark { background: var(--color-bg); }
.section-alt { background: var(--color-bg-alt); }
.section-light { background: linear-gradient(180deg, #FFFFFF 0%, #E7E7E7 100%); }
.section-light .title { color: #000; }
.section-light .subtitle { color: #333; }
.section-light .result-card { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.section-light .video-card { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.section-light .btn-cta { box-shadow: 0 4px 20px rgba(103,255,123,0.3); }

/* --- TYPOGRAPHY --- */
.title {
  font-family: var(--font-heading); font-size: 26px; font-weight: 400;
  text-align: center; margin-bottom: 16px; line-height: 1.3; letter-spacing: 0.5px;
}
.subtitle {
  text-align: center; font-size: 15px; color: var(--color-text-muted);
  margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.corx {
  font-weight: 900;
  background: linear-gradient(20deg, #f3e5b4, var(--color-gold-dark), #f3cf72, var(--color-gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gold-divider { height: 1px; background: linear-gradient(90deg, transparent, #c6965d, #755a3b, transparent); margin: 28px 0; }
.warm-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 500px; background: #281d0e; border-radius: 100%;
  filter: blur(180px); opacity: 0.35; pointer-events: none; z-index: 0;
}
.warm-glow-center { top: 40%; }
.glass-card {
  background: rgba(16, 16, 16, 0.85); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(212, 174, 93, 0.12); border-radius: 12px;
}
.reflexo { position: relative; overflow: hidden; }
.reflexo::before {
  content: ''; position: absolute; left: 0; width: 150px; height: 300%; top: -100%;
  filter: blur(20px); background: linear-gradient(to right, transparent 1%, #fff 40%, #fff 60%, transparent 100%);
  pointer-events: none; mix-blend-mode: overlay; transform: rotate(20deg);
  animation: reflexo 3s linear infinite; z-index: 2;
}
@keyframes reflexo { from { transform: rotate(20deg) translateX(-300%); } to { transform: rotate(20deg) translateX(300%); } }

/* --- REVEAL ANIMATION --- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- BUTTON CTA --- */
.btn-cta {
  display: block; width: 100%; max-width: 480px; margin: 32px auto 0; text-align: center;
  background: var(--color-green-cta); color: #0A3410;
  font-family: var(--font-heading); font-size: 16px; font-weight: 900;
  padding: 20px 28px; border-radius: 8px; border: 2px solid #63FF79;
  box-shadow: 0 0 60px -15px #CFB580, 0 4px 20px rgba(103,255,123,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
  cursor: pointer; transition: all 0.25s ease-out; letter-spacing: 0.5px;
  position: relative; z-index: 2; animation: luzes 2.5s ease-in-out infinite;
  min-height: 56px; overflow: hidden;
}
.btn-cta::before {
  content: ''; position: absolute; top: -50%; left: -75%; width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(25deg); animation: btn-sweep 3s ease-in-out infinite; pointer-events: none;
}
@keyframes btn-sweep { 0%, 100% { left: -75%; } 50% { left: 125%; } }
.btn-cta:hover {
  background: linear-gradient(180deg, #B4FFBE 0%, var(--color-green-cta) 100%); color: #000;
  transform: translateY(-3px);
  box-shadow: 0 0 80px -10px #CFB580, 0 10px 30px rgba(103,255,123,0.3), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-cta:active { transform: translateY(1px); box-shadow: 0 0 30px -18px #CFB580, 0 2px 8px rgba(103,255,123,0.15); transition: all 0.08s ease; }
@keyframes luzes {
  0%, 100% { box-shadow: 0 0 20px -10px rgba(97,206,112,0.4), 0 4px 20px rgba(103,255,123,0.15), inset 0 1px 0 rgba(255,255,255,0.15); }
  50% { box-shadow: 0 0 35px 2px rgba(97,206,112,0.5), 0 4px 20px rgba(103,255,123,0.25), inset 0 1px 0 rgba(255,255,255,0.15); }
}
.btn-shine {}
.check-green-svg { flex-shrink: 0; margin-right: 8px; margin-top: 2px; }

/* --- URGENCY BAR --- */
.urgency-bar { background: var(--color-red); position: sticky; top: 0; z-index: 1000; padding: 8px 0; }
.urgency-inner { max-width: 1200px; margin: 0 auto; padding: 0 16px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 12px; }
.urgency-tag { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; opacity: 0.9; }
.urgency-text { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.countdown { display: flex; align-items: center; gap: 4px; }
.cd-item { background: rgba(0,0,0,0.4); padding: 4px 8px; border-radius: 4px; text-align: center; min-width: 44px; }
.cd-num { display: block; font-family: var(--font-heading); font-size: 18px; font-weight: 700; line-height: 1.2; }
.cd-lbl { display: block; font-size: 8px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }
.cd-sep { font-size: 16px; font-weight: 700; opacity: 0.6; }

/* --- HERO --- */
.hero { position: relative; display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.hero-bg { position: relative; width: 100%; height: auto; aspect-ratio: 750 / 563; background: url('../images/fundo-lp-medico-mobile.webp') center top / cover no-repeat; flex-shrink: 0; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, #000 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 0; margin-top: -30px; }
.hero-left { text-align: center; }
.hero-logo { max-width: 90px; margin: 0 auto 12px; filter: drop-shadow(0 0 20px rgba(212,174,93,0.15)); }
.hero h1 { font-family: var(--font-heading); font-size: 22px; font-weight: 400; line-height: 1.3; margin-bottom: 12px; }
.hero-sub { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 10px; max-width: 550px; }
.hero-cta-label { font-family: var(--font-heading); font-size: 9px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--color-gold); margin-bottom: 8px; }
.hero-cta-wrap { margin-top: 4px; }
.hero-cta-wrap .btn-cta { margin: 0 auto; }
.hero-proof { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 16px; padding-bottom: 24px; font-size: 13px; color: rgba(255,255,255,0.5); }
.hero-progress { margin-top: 16px; max-width: 480px; margin-left: auto; margin-right: auto; }
.progress-bar { position: relative; width: 100%; height: 10px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: visible; margin-bottom: 10px; }
.progress-fill { width: 67%; height: 100%; background: linear-gradient(90deg, var(--color-red), #ff4444); border-radius: 10px 0 0 10px; position: relative; animation: progress-pulse 2s ease-in-out infinite; }
.progress-marker { position: absolute; top: 50%; left: 67%; transform: translate(-50%, -50%); width: 18px; height: 18px; background: #fff; border: 3px solid var(--color-red); border-radius: 50%; box-shadow: 0 0 10px rgba(214,24,24,0.4); z-index: 2; }
@keyframes progress-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.8; } }
.progress-text { font-size: 14px; color: rgba(255,255,255,0.6); }
.progress-pct { font-family: var(--font-heading); font-weight: 700; color: #fff; }

/* --- PAIN POINTS --- */
.pain-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 28px; }
.pain-card { padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.pain-num { font-family: var(--font-heading); font-size: 32px; font-weight: 900; background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; flex-shrink: 0; }
.pain-card p { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; }
.pain-closing { text-align: center; font-family: var(--font-heading); font-size: 18px; margin-bottom: 0; }

/* --- MOTIVOS --- */
.motivos-list { max-width: 600px; margin: 0 auto; }
.motivo-item { display: flex; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(212,174,93,0.08); }
.motivo-n { flex-shrink: 0; width: 36px; height: 36px; background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark)); color: #000; font-family: var(--font-heading); font-weight: 700; font-size: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.motivo-item p { font-size: 15px; color: var(--color-text-muted); }

/* --- STEPS --- */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; position: relative; z-index: 1; }
.step-card { padding: 28px 24px; text-align: center; position: relative; }
.step-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--color-gold), transparent); }
.step-badge { font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--color-gold); margin-bottom: 16px; }
.step-icon-wrap { width: 56px; height: 56px; margin: 0 auto 14px; background: rgba(212,174,93,0.1); border: 1px solid rgba(212,174,93,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.step-card h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: 0.5px; }
.step-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* --- ENTREGAVEIS --- */
.section-entregas { background: radial-gradient(ellipse 90% 70% at 50% 50%, rgba(40,29,14,0.7) 0%, transparent 70%), radial-gradient(ellipse 60% 50% at 50% 45%, rgba(212,174,93,0.18) 0%, transparent 55%), radial-gradient(ellipse 30% 25% at 50% 45%, rgba(212,174,93,0.1) 0%, transparent 50%), #050505; overflow: hidden; position: relative; }
.section-chevron { display: block; margin: 0 auto 28px; animation: chevron-bounce 2s ease-in-out infinite; }
@keyframes chevron-bounce { 0%, 100% { transform: translateY(0); opacity: 0.6; } 50% { transform: translateY(6px); opacity: 1; } }
.entrega-day { text-align: center; margin-bottom: -14px; position: relative; z-index: 2; }
.entrega-day-badge { display: inline-block; font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: #fff; background: #101010; border: 1px solid rgba(103,255,123,0.3); padding: 6px 18px; border-radius: 20px; letter-spacing: 1px; }
.entrega-day-gold { border-color: rgba(212,174,93,0.4); color: var(--color-gold); }
.entrega-card-v { max-width: 750px; margin: 0 auto 28px; padding: 28px 24px 24px; text-align: center; }
.entrega-card-v h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 900; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.entrega-card-v p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 18px; }
.entrega-card-img { border-radius: 12px; overflow: hidden; border: 1px solid rgba(212,174,93,0.1); }
.entrega-card-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.entrega-card-v-bonus { border-color: rgba(212,174,93,0.25); background: linear-gradient(160deg, rgba(16,16,16,0.9) 60%, rgba(212,174,93,0.04) 100%); }
.bonus-heading { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--color-gold); text-align: center; letter-spacing: 2px; }
@media (min-width: 768px) {
  .entrega-card-v { display: flex; align-items: center; gap: 24px; text-align: left; padding: 24px; }
  .entrega-card-v .entrega-card-text { flex: 1; }
  .entrega-card-v .entrega-card-img { flex: 0 0 45%; margin-bottom: 0; }
  .entrega-card-v p { margin-bottom: 0; }
}

/* --- RESULTS --- */
.results-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
.result-card { background: #0a0a0a; border: 1px solid rgba(212,174,93,0.1); border-radius: 10px; overflow: hidden; padding: 6px; margin-bottom: 14px; }
.result-card img { border-radius: 6px; width: 100%; }
.result-wide { margin-bottom: 14px; }
.videos-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 36px 0; }
.video-card { background: #0a0a0a; border: 1px solid rgba(212,174,93,0.15); border-radius: 14px; overflow: hidden; padding: 5px; box-shadow: 0 0 50px rgba(212,174,93,0.06); }
.video-inner { position: relative; padding-top: 56.25%; border-radius: 10px; overflow: hidden; }
.video-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; background: #000; }

/* --- MENTOR --- */
.mentor-layout { display: flex; flex-direction: column; gap: 28px; align-items: center; }
.mentor-photo { width: 100%; max-width: 350px; }
.mentor-photo img { border-radius: 12px; border: 2px solid rgba(212,174,93,0.2); }
.mentor-bio h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 900; text-align: center; margin-bottom: 14px; letter-spacing: 1px; }
.mentor-bio p { font-size: 14px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 10px; }
.mentor-bio blockquote { font-family: var(--font-heading); font-size: 17px; font-style: italic; color: var(--color-gold); border-left: 2px solid var(--color-gold); padding-left: 18px; margin-top: 18px; line-height: 1.5; }

/* --- STORY --- */
.story-content, .story-close { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.story-content p, .story-close p { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 14px; }
.key-statement { padding: 24px; margin: 28px 0; text-align: center; border-color: rgba(212,174,93,0.25); }
.key-statement p { font-family: var(--font-heading); font-size: 20px; font-weight: 400; color: #fff; margin: 0; line-height: 1.4; }
.results-box { padding: 28px 24px; margin: 32px auto; max-width: 700px; position: relative; z-index: 1; border-color: rgba(212,174,93,0.2); }
.results-box h3 { font-family: var(--font-heading); font-size: 18px; color: var(--color-gold); text-align: center; margin-bottom: 18px; }
.results-box ul { display: flex; flex-direction: column; gap: 12px; }
.results-box li { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.sig { font-family: var(--font-heading); font-size: 16px; color: var(--color-gold) !important; font-weight: 700; text-align: center; margin-top: 20px !important; }
.story-close { text-align: center; }

/* --- AUDIENCE --- */
.audience-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.audience-card { padding: 28px 24px; text-align: center; }
.audience-ico { width: 56px; height: 56px; margin: 0 auto 14px; background: rgba(212,174,93,0.1); border: 1px solid rgba(212,174,93,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.audience-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }

/* --- FLOATING LINES --- */
.float-lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.fl { position: absolute; display: block; background: linear-gradient(90deg, transparent, rgba(212,174,93,0.15), transparent); border-radius: 2px; }
.fl-1 { width: 200px; height: 2px; top: 15%; left: -200px; animation: fl-move 6s linear infinite; }
.fl-2 { width: 150px; height: 1px; top: 35%; left: -150px; animation: fl-move 8s linear infinite 1s; }
.fl-3 { width: 250px; height: 2px; top: 55%; right: -250px; animation: fl-move-r 7s linear infinite 0.5s; }
.fl-4 { width: 120px; height: 1px; top: 75%; left: -120px; animation: fl-move 9s linear infinite 2s; }
.fl-5 { width: 180px; height: 2px; top: 90%; right: -180px; animation: fl-move-r 6s linear infinite 1.5s; }
@keyframes fl-move { 0% { transform: translateX(0); } 100% { transform: translateX(calc(100vw + 300px)); } }
@keyframes fl-move-r { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-100vw - 300px)); } }

/* --- PRICING --- */
.pricing-section .container { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.pricing-eyebrow { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--color-gold); text-transform: uppercase; margin-bottom: 8px; }
.pricing-badge { background: var(--color-red); color: #fff; font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 2px; padding: 8px 22px; border-radius: 30px; margin-bottom: 28px; animation: badge-pulse 2s ease-in-out infinite; }
@keyframes badge-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.pricing-card-outer { position: relative; width: 100%; max-width: 540px; }
.pricing-card-glow { position: absolute; inset: -2px; border-radius: 14px; background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark), #f3cf72, var(--color-gold-dark), var(--color-gold)); background-size: 300% 300%; animation: glow-rotate 4s ease infinite; z-index: 0; opacity: 0.6; filter: blur(1px); }
@keyframes glow-rotate { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.pricing-card { width: 100%; padding: 36px 28px; text-align: center; border-color: rgba(212,174,93,0.3); position: relative; z-index: 1; }
.pricing-border-anim { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--color-gold), #f3cf72, var(--color-gold), transparent); background-size: 200% 100%; animation: border-shimmer 3s linear infinite; }
@keyframes border-shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.pricing-includes h3 { font-family: var(--font-heading); font-size: 16px; color: var(--color-gold); margin-bottom: 14px; }
.pricing-includes ul { text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pricing-includes li { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; display: flex; gap: 8px; align-items: flex-start; }
.pricing-value { margin: 24px 0 16px; }
.price-from { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.riscar { position: relative; color: var(--color-red); }
.riscar::after { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: var(--color-red); }
.price-to { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.price-big { font-family: var(--font-heading); line-height: 1; }
.price-num { font-size: 80px; }
.price-cents { font-size: 28px; vertical-align: super; }
.cd-pricing { margin: 20px 0; }
.cd-pricing-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.cd-row { display: flex; justify-content: center; align-items: center; gap: 4px; }
.cd-item-red { background: rgba(214,24,24,0.2); border: 1px solid rgba(214,24,24,0.4); }
.cd-sep-red { font-size: 16px; font-weight: 700; color: var(--color-red); opacity: 0.6; }
.pricing-card .btn-cta { margin-top: 20px; }
.price-installment { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 6px; }
.pricing-trust { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.3px; }

/* --- GARANTIA --- */
.garantia-layout { display: flex; flex-direction: column; align-items: center; gap: 24px; max-width: 650px; margin: 0 auto; }
.garantia-img img { max-width: 140px; margin: 0 auto; }
.garantia-text ol { list-style: decimal; padding-left: 24px; }
.garantia-text li { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 8px; }

/* --- OBJECOES --- */
.objection-content { max-width: 700px; margin: 0 auto; }
.objection-content p { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 14px; }
.bad-list { padding-left: 8px; margin-bottom: 24px; }
.bad-list li { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 8px; padding-left: 24px; position: relative; }
.bad-list li::before { content: '\2715'; position: absolute; left: 0; color: var(--color-red); font-weight: 700; }
.highlight-phrase { font-family: var(--font-heading); font-size: 22px !important; -webkit-text-fill-color: transparent; background: linear-gradient(20deg, #f3e5b4, var(--color-gold-dark), #f3cf72, var(--color-gold-dark)); -webkit-background-clip: text; background-clip: text; }
.reasons-box { padding: 24px; margin: 24px 0; }
.reasons-box h3 { font-family: var(--font-heading); font-size: 17px; color: var(--color-gold); margin-bottom: 14px; }
.reasons-box ol { list-style: decimal; padding-left: 24px; }
.reasons-box li { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 10px; }

/* --- DECISION --- */
.decision-grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 600px; margin: 24px auto; }
.decision-bad, .decision-good { padding: 24px; text-align: center; }
.decision-bad { border-color: rgba(214,24,24,0.25); background: rgba(214,24,24,0.04); }
.decision-good { border-color: rgba(103,255,123,0.25); background: rgba(103,255,123,0.04); }
.decision-bad h3, .decision-good h3 { font-family: var(--font-heading); font-size: 17px; margin-bottom: 6px; }
.decision-bad h3 { color: var(--color-red); }
.decision-good h3 { color: var(--color-green-cta); }
.decision-bad p, .decision-good p { font-size: 14px; color: rgba(255,255,255,0.6); }
.roi-text { text-align: center; font-family: var(--font-heading); font-size: 18px; margin-bottom: 4px; }

/* --- FAQ --- */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: rgba(16,16,16,0.8); border: 1px solid rgba(212,174,93,0.08); border-radius: 10px; overflow: hidden; }
.faq-q { width: 100%; color: #fff; font-family: var(--font-heading); font-size: 15px; font-weight: 700; padding: 18px 20px; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: background 0.3s; background: rgba(26,26,26,0.9); }
.faq-q:hover { background: #1f1f1f; }
.faq-icon { font-size: 22px; color: var(--color-gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.active .faq-a { max-height: 200px; padding: 14px 20px; }
.faq-a p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* --- FOOTER --- */
.footer { background: var(--color-bg); padding: 30px 0 40px; text-align: center; }
.footer-logo { max-width: 120px; margin: 0 auto 16px; opacity: 0.6; }
.footer p { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 16px; }

/* --- TABLET --- */
@media (min-width: 768px) {
  .title { font-size: 32px; }
  .hero h1 { font-size: 36px; }
  .urgency-inner { flex-wrap: nowrap; gap: 14px; }
  .urgency-text { font-size: 12px; }
  .hero { flex-direction: row; align-items: center; padding: 80px 0 40px; min-height: 70vh; }
  .hero-bg { position: absolute; inset: 0; height: auto; aspect-ratio: auto; background-image: url('../images/hero-bg-nicolas.webp'); background-position: right top; background-size: cover; clip-path: none; }
  .hero-gradient { background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 40%, transparent 70%), linear-gradient(180deg, transparent 0%, transparent 85%, #000 100%); }
  .hero-content { margin-top: 0; }
  .hero-content { max-width: none; }
  .hero-left { text-align: left; flex: 0 0 45%; max-width: 45%; padding-left: 110px; }
  .hero-left .hero-cta-wrap .btn-cta { margin: 0; }
  .hero-left .hero-proof { justify-content: flex-start; }
  .hero-left .hero-progress { margin-left: 0; margin-right: 0; }
  .hero h1 { font-size: 28px; }
  .hero-logo { max-width: 70px; margin: 0 0 12px; }
  .btn-cta { font-size: 18px; width: auto; min-width: 380px; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .videos-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .decision-grid { grid-template-columns: 1fr 1fr; }
  .mentor-layout { flex-direction: row; align-items: flex-start; }
  .mentor-photo { flex: 0 0 320px; }
  .mentor-bio h3 { text-align: left; }
  .garantia-layout { flex-direction: row; }
  .price-num { font-size: 100px; }
  .warm-glow { width: 900px; height: 700px; }
}

/* --- DESKTOP --- */
@media (min-width: 1024px) {
  .section { padding: 80px 0; }
  .title { font-size: 38px; }
  .hero-logo { max-width: 80px; }
  .hero h1 { font-size: 34px; }
  .hero { padding: 100px 0 60px; min-height: 90vh; }
  .hero-left { flex: 0 0 45%; max-width: 45%; padding-left: 140px; }
  .btn-cta { font-size: 20px; padding: 24px 32px; }
  .pain-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .key-statement p { font-size: 26px; }
  .price-num { font-size: 120px; }
  .warm-glow { width: 1400px; height: 1000px; }
}
