:root {
  --bg-color: #0b111a;
  --bg-surface: #121A26;
  --accent: #41D882;
  --accent-glow: rgba(65, 216, 130, 0.4);
  --accent-faded: rgba(65, 216, 130, 0.1);
  --danger: #EF4444;
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  
  --glass-bg: rgba(18, 26, 38, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-accent: rgba(65, 216, 130, 0.2);
  
  --font-sans: 'Outfit', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.site-wrapper {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =====================================
   CUSTOM CURSOR & NOISE OVERLAY
   ===================================== */
.noise-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none; z-index: 9998; opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.cursor-dot, .cursor-outline {
  position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
  border-radius: 50%; z-index: 9999; pointer-events: none;
}
.cursor-dot {
  width: 8px; height: 8px; background-color: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow); transition: transform 0.2s ease;
}
.cursor-outline {
  width: 40px; height: 40px; border: 1px solid rgba(65, 216, 130, 0.4);
  transition: transform 0.1s ease-out, width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}
body.hovering .cursor-dot { transform: translate(-50%, -50%) scale(0.5); }
body.hovering .cursor-outline {
  width: 60px; height: 60px; background-color: rgba(65, 216, 130, 0.08); border-color: var(--accent);
}

@media (max-width: 768px) {
  .cursor-dot, .cursor-outline { display: none !important; }
  .noise-overlay { display: none !important; } /* Desativa o ruído no celular pois o filtro SVG consome muito processamento gráfico e trava o scroll */
  
  /* Alivia o peso do glassmorphism em telas menores */
  .glass-dark, .premium-glass, .glass-cyber {
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
  }
}

/* =====================================
   TYPOGRAPHY & UTILS
   ===================================== */
h1, h2, h3, .huge-text, .colossal-text {
  font-family: var(--font-display);
  line-height: 1.2;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
}

.text-glow {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

.text-danger { color: var(--danger); }

.subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 400;
}

.text-md { font-size: 1.1rem; }
.italic-lead { font-size: 1.15rem; font-style: italic; color: var(--text-muted); }
.colossal-text { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-medium { max-width: 900px; margin: 0 auto; }
.container-narrow { max-width: 800px; margin: 0 auto; }
.max-w-sm { max-width: 600px; margin: 0 auto; }

.section { padding: 4rem 0; position: relative; z-index: 10; }
.relative { position: relative; }
.text-center { text-align: center; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.pb-4 { padding-bottom: 4rem; }
.pb-6 { padding-bottom: 6rem; }
.pt-4 { padding-top: 4rem; }

/* Icons */
.icon-accent { color: var(--accent); }
.icon-danger { color: var(--danger); }
.icon-warning { color: #F59E0B; width: 32px; height: 32px; }
.big-icon { width: 32px; height: 32px; }
.huge-shield-icon { width: 64px; height: 64px; color: var(--accent); }
.inline-icon { display: inline-block; vertical-align: middle; margin-right: 4px; width: 20px; }

/* Lists */
.clean-list { list-style: none; }
.clean-list li { margin-bottom: 0.75rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.clean-list.check-heavy li { font-size: 1.1rem; font-weight: 500; }
.clean-list.check-heavy i { color: var(--accent); margin-top: 2px; }

.heavy-green li { color: var(--text-main); font-size: 1.25rem; font-weight: 600; }
.text-center-list li { display: flex; justify-content: center; }
.inline-center-list { display: flex; flex-direction: column; align-items: center; }

/* Tags */
.tag-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}
.center-tag { margin-left: auto; margin-right: auto; display: flex; flex-wrap: wrap; text-align: center; justify-content: center; width: fit-content; max-width: 100%; }
.hot-tag { background: rgba(239, 68, 68, 0.1); border-color: var(--danger); color: var(--danger); }

/* Buttons */
.btn-wrapper { margin-top: 2rem; display: flex; justify-content: flex-start; width: 100%; }
.btn-wrap-center { display: flex; justify-content: center; margin-top: 2rem; width: 100%; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--accent);
  color: var(--bg-color);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}
.glow-btn { box-shadow: 0 0 30px var(--accent-glow); position: relative; overflow: hidden; }
.glow-btn::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg); animation: shine 4s infinite; transition: opacity 0.3s;
}
@keyframes shine { 
  0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } 
}
.glow-btn:hover::after { opacity: 0; }
.glow-btn:hover { box-shadow: 0 15px 40px rgba(65, 216, 130, 0.6); transform: translateY(-3px) scale(1.02); }
.massive-btn { font-size: 1.25rem; padding: 1.5rem; }

/* =====================================
   BACKGROUND BLOBS
   ===================================== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
  background: var(--accent);
  opacity: 0.12;
}
.blob-1 { top: -10vw; right: -10vw; width: 500px; height: 500px; opacity: 0.15; }
.blob-2 { top: 40vh; left: -10vw; width: 400px; height: 400px; }
.blob-3 { top: 10%; right: 0; width: 600px; height: 600px; }
.blob-4 { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; opacity: 0.08; }
.blob-5 { top: 20%; left: -200px; width: 500px; height: 500px; }

/* =====================================
   GLASS CARDS
   ===================================== */
.glass-dark, .premium-glass, .glass-cyber {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  position: relative;
  z-index: 2;
  overflow: hidden; /* For spotlight */
}

/* SPOTLIGHT GLOW EFFECT */
.glass-cyber::before, .premium-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(65, 216, 130, 0.08), transparent 40%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s ease;
  opacity: 0;
}
.glass-cyber:hover::before, .premium-glass:hover::before { opacity: 1; }


.glass-dark { border: 1px solid var(--glass-border); padding: 1.5rem; }
.premium-glass { border: 1px solid rgba(255, 255, 255, 0.12); padding: 2.5rem; box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05); }
.glass-cyber { background: linear-gradient(180deg, rgba(30, 41, 59, 0.8) 0%, rgba(18, 26, 38, 0.9) 100%); border: 1px solid var(--accent-faded); padding: 2.5rem; box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05); }

.card-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80%; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); box-shadow: 0 0 20px 2px var(--accent); opacity: 0.5; }
.card-glow.intense { opacity: 1; height: 2px; }

/* =====================================
   HERO SECTION
   ===================================== */
.hero { padding: 5rem 0 3rem; overflow: hidden; }
.hero-container { display: flex; flex-direction: column; gap: 3rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--accent-faded); border: 1px solid var(--glass-border-accent);
  color: var(--accent); padding: 0.5rem 1.2rem; border-radius: 30px;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 2rem;
}
.pulse-ring {
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow); animation: pulse_ring 2s infinite;
}
@keyframes pulse_ring {
  0% { box-shadow: 0 0 0 0 rgba(65, 216, 130, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(65, 216, 130, 0); }
  100% { box-shadow: 0 0 0 0 rgba(65, 216, 130, 0); }
}

.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.hero-desc { font-size: 1.1rem; color: #cbd5e1; margin-top: 1rem; margin-bottom: 2rem; }

.hero-image-wrapper { position: relative; width: 100%; max-width: 450px; display: none; }
.image-glow-backdrop {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100%; height: 100%; background: var(--accent); filter: blur(70px); opacity: 0.2; border-radius: 50%;
}
.hero-img {
  width: 100%; height: auto; border-radius: 20px; position: relative; z-index: 2;
  border: 1px solid var(--glass-border); box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
}

/* =====================================
   PROBLEM SECTION
   ===================================== */
.bento-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.bento-card { display: flex; align-items: center; gap: 1.25rem; font-weight: 500; font-size: 1.05rem; }

.result-alert {
  background: rgba(239, 68, 68, 0.05); border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px; padding: 1.5rem; color: #fca5a5;
}
.alert-content { display: flex; gap: 1rem; align-items: flex-start; }

/* =====================================
   OPPORTUNITY
   ===================================== */
.opportunity-title { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.opportunity-list-box { border-left: 5px solid var(--accent); }

.mindset-box { border-color: var(--accent-faded); }
.highlight-text { font-size: 1.6rem; font-family: var(--font-display); color: var(--accent); font-weight: 800; letter-spacing: -0.01em; }
.mindset-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.mindset-item { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: rgba(0,0,0,0.3); padding: 1rem; border-radius: 8px; font-weight: 500; }

/* =====================================
   DVC METHOD
   ===================================== */
.dvc-container { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.dvc-card { width: 100%; text-align: center; }
.dvc-icon-wrap {
  width: 70px; height: 70px; border-radius: 50%; background: var(--bg-surface);
  border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; box-shadow: 0 0 20px var(--accent-faded);
}
.dvc-letter { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--accent); }
.dvc-card h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.dvc-card p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.4; }
.dvc-arrow { color: var(--accent); padding: 0.5rem; margin: 0; }
.dvc-arrow svg, .dvc-arrow i { width: 32px; height: 32px; transform: rotate(90deg) !important; display: block; margin: 0 auto; }

/* =====================================
   DVC METHOD DEEP DIVE
   ===================================== */
.dvc-deep-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem; }
.xs-letter { width: 32px !important; height: 32px !important; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin: 0 0.5rem 0 0 !important; border-width: 1px !important; box-shadow: none !important; }
.dvc-small-letter { font-size: 1.1rem !important; line-height: 1 !important; margin-top: 2px; display: inline-block; }
.fechamento-dvc { padding: 2.5rem 1.5rem; border-radius: 12px; border: 1px solid rgba(239, 68, 68, 0.2); }
.fallback-footer { padding-top: 1.25rem; border-top: 1px solid var(--glass-border); font-size: 0.9rem; color: var(--accent); display: flex; gap: 0.75rem; align-items: flex-start; line-height: 1.4; margin-top: auto; }
.fallback-footer i { flex-shrink: 0; margin-top: 2px; }

/* =====================================
   AUTHOR & IDENTITY
   ===================================== */
.identity-highlight {
  border-top: 4px solid var(--accent); 
  border-radius: 16px;
}

.author-card { display: flex; flex-direction: column; gap: 2rem; text-align: left; }
.author-image img {
  width: 100%; max-width: 320px; border-radius: 20px; object-fit: cover;
  border: 1px solid var(--glass-border); display: block; margin: 0 auto;
}
.disclaimer-alert {
  background: rgba(255,255,255,0.05); padding: 1rem; border-radius: 8px; border-left: 3px solid var(--accent);
  font-size: 0.9rem; color: #cbd5e1;
}

/* =====================================
   COURSE STRUCTURE
   ===================================== */
.timeline-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.timeline-card { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease; word-wrap: break-word; overflow-wrap: break-word; display: flex; flex-direction: column; height: 100%; }
.dvc-deep-grid .block-desc { font-size: 0.95rem; color: #cbd5e1; font-weight: 400; margin-bottom: 1.5rem; line-height: 1.5; }
.dvc-deep-grid .module-list li { font-size: 0.9rem; margin-bottom: 1rem; }
.timeline-card:hover { transform: translateY(-8px); box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(65,216,130,0.15); }

.block-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-display);
  font-weight: 700; color: var(--text-muted); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--glass-border); width: 100%;
}
.block-badge.accent { color: var(--accent); }
.icon-bg-dark { color: var(--bg-color); background: var(--accent); border-radius: 4px; padding: 2px; }

.block-desc { font-weight: 500; font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--text-main); }
.module-list { list-style: none; margin-bottom: 2rem; }
.module-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: #94A3B8; font-size: 0.95rem; }
.module-list li::before { content: '>'; position: absolute; left: 0; color: var(--accent); font-family: monospace; font-weight: 700; }
.card-footer { font-size: 0.85rem; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 0.5rem; }

.support-banner { border-color: var(--accent-faded); }
.header-inline { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1rem; }
.support-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; text-align: left; }
.target-item { background: rgba(0,0,0,0.2); padding: 1rem; border-radius: 8px; display: flex; align-items: center; gap: 1rem; font-weight: 500; }

/* =====================================
   PROOFS / TESTIMONIALS
   ===================================== */
.highlight-testimonials { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.testimonial-box { display: flex; flex-direction: column; gap: 1.5rem; }
.quote-mark { color: var(--text-muted); opacity: 0.3; width: 40px; height: 40px; margin-bottom: 0.5rem; }
.quote-header h3 { color: var(--accent); margin-bottom: 0.5rem; font-size: 1.4rem; font-family: var(--font-display); }
.quote-text { font-size: 1.1rem; color: #cbd5e1; font-style: italic; }
.image-proof img { width: 100%; border-radius: 12px; border: 1px solid var(--glass-border); display: block; }

.other-proofs { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.other-proofs img { width: 100%; border-radius: 8px; opacity: 0.7; transition: opacity 0.3s; border: 1px solid var(--glass-border); }
.other-proofs img:hover { opacity: 1; }

/* =====================================
   CHECKOUT / OFFER
   ===================================== */
.offer-contents { position: relative; z-index: 2; }

.price-compare { background: rgba(0,0,0,0.3); padding: 1.5rem; border-radius: 12px; text-align: left; }
.price-compare p { color: var(--text-muted); margin-bottom: 1rem; font-weight: 500; }
.compare-list { list-style: none; }
.compare-list li { display: flex; justify-content: space-between; margin-bottom: 0.5rem; color: #64748B; font-size: 0.95rem; }
.total-compare { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 1rem; padding-top: 1rem; text-align: right; font-weight: 700; color: var(--text-main); }

.price-today { margin-top: 2rem; margin-bottom: 2rem; display: flex; flex-direction: column; align-items: center; }
.small-label { color: var(--text-muted); font-size: 1.1rem; font-weight: 500; margin-bottom: 0.5rem; }
.price-huge { font-family: var(--font-display); font-size: 3.2rem; font-weight: 800; color: var(--accent); line-height: 1; text-shadow: 0 0 30px var(--accent-glow); margin: 0; }
.price-huge .cents { font-size: 1.5rem; }
.price-cash { color: #cbd5e1; font-size: 1.1rem; margin-top: 0.5rem; }

.guarantee-standalone {
  padding: 3rem;
  border-left: 5px solid var(--accent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* =====================================
   FAQ & FOOTER
   ===================================== */
.faq-accordion { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; overflow: hidden; }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; background: transparent; border: none; color: var(--text-main); font-family: var(--font-sans); font-weight: 600; font-size: 1.05rem; text-align: left; cursor: pointer; transition: background 0.3s; }
.faq-btn:hover { background: rgba(255,255,255,0.05); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 1.5rem; color: #cbd5e1; font-size: 0.95rem; }
.faq-item.active .faq-content { max-height: 200px; padding: 0 1.5rem 1.5rem; }
.faq-item.active .faq-btn i { transform: rotate(180deg); color: var(--accent); }

.divider { border-top: 1px solid var(--glass-border); padding-top: 2rem; }

/* =====================================
   ANIMATIONS
   ===================================== */
/* =====================================
   ANIMAÇÕES
   ===================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: none;
}

.reveal.is-visible {
  animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal.is-visible.d-delay-1 { animation-delay: 0.1s; }
.reveal.is-visible.d-delay-2 { animation-delay: 0.2s; }
.reveal.is-visible.d-delay-3 { animation-delay: 0.3s; }

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .glow-btn::after { animation: none; }
  .pulse-ring { animation: none; }
}

/* =====================================
   MEDIA QUERIES (DESKTOP)
   ===================================== */
@media (min-width: 768px) {
  .hero-container { flex-direction: row; justify-content: space-between; align-items: center; }
  .hero-content { flex: 1.2; padding-right: 2rem; }
  .hero-image-wrapper { flex: 1; margin: 0; display: block; }
  .btn-primary { width: auto; display: inline-flex; }
  .btn-wrapper { display: flex; justify-content: flex-start; }
  .btn-wrap-center { display: flex; justify-content: center; }
  
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-card { flex-direction: column; text-align: center; }
  
  .mindset-grid { grid-template-columns: repeat(3, 1fr); }
  
  /* DVC Customizado para Desktop */
  .dvc-container { flex-direction: row; justify-content: center; align-items: stretch; gap: 2rem; }
  .dvc-arrow { margin-top: 25px; margin-left: 1rem; margin-right: 1rem; padding: 0; }
  .dvc-arrow svg, .dvc-arrow i { width: 32px; height: 32px; transform: rotate(0deg) !important; }
  .dvc-deep-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .fechamento-dvc { padding: 3rem 4rem; margin: 4rem auto 0; max-width: 800px; }
  
  /* Autor lado a lado (Imagem Esquerda, Texto Direita) */
  .author-card { flex-direction: row; align-items: center; gap: 3rem; }
  .author-image { flex: 1; }
  .author-bio { flex: 2; }
  
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  
  .highlight-testimonials { grid-template-columns: repeat(2, 1fr); align-items: start; }
  .testimonial-box { flex-direction: column; justify-content: flex-start; }
  .testimonial-box .image-proof { margin-top: auto; }
  
  .other-proofs { grid-template-columns: repeat(2, 1fr); }
  
  /* Preço grande restaurado no desktop */
  .price-huge { font-size: 6rem; }
  .price-huge .cents { font-size: 3rem; }
}
