/* ==========================================================================
   LUCAS AUGUSTO — A NOVA ERA DO MERCADO FINANCEIRO
   Direção Visual: Cyber-Volt, Brutalismo Moderno & Linguagem Popular
   Inovador, jovem, sem clichês de Faria Lima, feito para a massa brasileira
   ========================================================================== */

:root {
  /* Paleta: Preto Profundo + Volt Elétrico (Estilo Porsche GT3 / Streetwear de Luxo) */
  --bg-black: #060709;
  --bg-surface: #0c0e12;
  --bg-card: #12151b;
  --bg-card-hover: #181c24;

  /* Volt / Amarelo-Lima Elétrico: Alta Energia e Irreverência */
  --volt: #ccff00;
  --volt-hover: #dbff33;
  --volt-glow: rgba(204, 255, 0, 0.35);
  --volt-subtle: rgba(204, 255, 0, 0.08);
  --volt-border: rgba(204, 255, 0, 0.25);

  /* Neutros */
  --text-white: #ffffff;
  --text-gray: #a6adb9;
  --text-dark-gray: #5e6676;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Tipografia */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------------- Container ---------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------------- Elementos de Destaque ---------------- */
.text-volt {
  color: var(--volt);
}

.bg-volt {
  background-color: var(--volt);
  color: #000000;
}

.highlight-box {
  background: var(--volt);
  color: #000000;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  font-weight: 800;
}

.tag-volt {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--volt-subtle);
  border: 1px solid var(--volt-border);
  color: var(--volt);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.live-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--volt);
  box-shadow: 0 0 10px var(--volt);
  animation: pulseVolt 1.8s infinite ease-in-out;
}

@keyframes pulseVolt {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.85); }
}

/* ---------------- Header ---------------- */
.header-top {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(6, 7, 9, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.1rem 0;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-area {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--volt);
  color: #000000;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.05em;
}

.brand-text-name {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-text-sub {
  font-size: 0.7rem;
  color: var(--text-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-header {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid var(--volt);
  color: var(--volt);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}

.btn-header:hover {
  background: var(--volt);
  color: #000000;
  box-shadow: 0 0 20px var(--volt-glow);
}

/* ---------------- Botões de Ação Brutais ---------------- */
.btn-volt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.35rem 2.75rem;
  border-radius: var(--radius-pill);
  background: var(--volt);
  color: #000000;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 0 35px var(--volt-glow), 0 10px 25px rgba(0, 0, 0, 0.7);
  border: none;
  cursor: pointer;
}

.btn-volt:hover {
  background: var(--volt-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 50px rgba(204, 255, 0, 0.5), 0 15px 35px rgba(0, 0, 0, 0.8);
}

.btn-volt:active {
  transform: translateY(0);
}

/* ---------------- HERO SECTION: IMPACTO BRUTAL & POPULAR ---------------- */
.hero-wrapper {
  padding: 4.5rem 0 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
}

.hero-main-title {
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-lead-text {
  font-size: clamp(1.1rem, 1.35vw, 1.25rem);
  color: var(--text-gray);
  line-height: 1.65;
  max-width: 580px;
}

.hero-lead-text strong {
  color: var(--text-white);
  font-weight: 700;
}

.cta-box-hero {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 500px;
}

.sub-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.sub-guarantee svg {
  color: var(--volt);
  flex-shrink: 0;
}

/* Números Rápidos / Provas da Hero */
.hero-numbers-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.hero-num-val {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 900;
  color: var(--volt);
  line-height: 1.1;
  font-family: var(--font-mono);
}

.hero-num-lbl {
  font-size: 0.82rem;
  color: var(--text-gray);
  margin-top: 0.25rem;
  font-weight: 600;
}

/* Moldura Fotográfica Hero: Limpa, Sem Caixas em Cima do Rosto */
.hero-image-block {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-frame {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 2px solid var(--border-strong);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  position: relative;
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.97);
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, var(--bg-black) 10%, rgba(6, 7, 9, 0.7) 50%, transparent 100%);
  pointer-events: none;
}

.hero-image-tag {
  padding: 1rem 1.25rem;
  background: rgba(12, 14, 18, 0.95);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.hero-tag-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-tag-badge {
  color: var(--volt);
  font-weight: 700;
  font-family: var(--font-mono);
}

/* ---------------- FAIXA MANCHETE DE IMPACTO ---------------- */
.banner-strip {
  background: var(--volt);
  color: #000000;
  padding: 1.1rem 0;
  overflow: hidden;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.banner-strip-inner {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ---------------- SEÇÕES ESTRUTURAIS ---------------- */
.section-pad {
  padding: 6.5rem 0;
  position: relative;
}

.section-darker {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.head-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.75rem auto;
}

.sec-title {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.sec-desc {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.65;
}

/* ---------------- QUEM É O LUCAS AUGUSTO (ANTI-FARIA LIMA) ---------------- */
.who-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.story-lead {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.story-p {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.story-p strong {
  color: var(--text-white);
}

.who-callout {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border-left: 4px solid var(--volt);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}

/* ---------------- A VERDADE CRUA: POR QUE VOCÊ CONTINUA SEM DINHEIRO ---------------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.pain-box {
  padding: 2.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
}

.pain-box:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.pain-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: 1.2rem;
}

.pain-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
}

.pain-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ---------------- SEÇÃO LIFESTYLE & PORSCHE GTS ---------------- */
.lifestyle-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 3.5rem;
}

.porsche-photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-strong);
  background: var(--bg-surface);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
}

.porsche-photo-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.quote-highlight {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border-left: 4px solid var(--volt);
  margin: 1.75rem 0;
}

.quote-phrase {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.45;
  color: var(--text-white);
}

/* ---------------- COMO FUNCIONA NA PRÁTICA (O PASSO A PASSO SIMPLES) ---------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-badge-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--volt);
  color: #000000;
  font-weight: 900;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-name {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
}

.step-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ---------------- O QUE VOCÊ VAI RECEBER (O PACOTE COMPLETO) ---------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.benefit-card {
  padding: 2.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
}

.benefit-card:hover {
  border-color: var(--volt-border);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--volt-subtle);
  border: 1px solid var(--volt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--volt);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
}

.benefit-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ---------------- DEPOIMENTOS DE BRASILEIROS REAIS ---------------- */
.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.proof-item {
  padding: 2.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.proof-quote-text {
  font-size: 1rem;
  color: var(--text-white);
  line-height: 1.65;
  font-style: italic;
}

.proof-badge-res {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--volt-subtle);
  border: 1px solid var(--volt-border);
  color: var(--volt);
  font-weight: 800;
  font-size: 0.85rem;
  font-family: var(--font-mono);
}

.proof-person {
  font-weight: 800;
  font-size: 0.95rem;
}

.proof-city {
  font-size: 0.8rem;
  color: var(--text-gray);
}

/* ---------------- OFERTA & PREÇO POPULAR ---------------- */
.pricing-card-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 2px solid var(--volt);
  box-shadow: 0 25px 80px rgba(204, 255, 0, 0.12), 0 20px 40px rgba(0, 0, 0, 0.8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.price-box-big {
  padding: 2rem 3rem;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.price-val-big {
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--volt);
  line-height: 1;
  font-family: var(--font-mono);
}

.price-sub-cash {
  font-size: 1.05rem;
  color: var(--text-gray);
  font-weight: 600;
}

/* ---------------- FAQ ---------------- */
.faq-grid-clean {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-box-item {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-box-item.active {
  border-color: var(--volt-border);
}

.faq-toggle-btn {
  width: 100%;
  padding: 1.5rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  cursor: pointer;
}

.faq-toggle-btn svg {
  color: var(--volt);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-box-item.active .faq-toggle-btn svg {
  transform: rotate(180deg);
}

.faq-content-inner {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 1.75rem;
}

.faq-box-item.active .faq-content-inner {
  padding: 0 1.75rem 1.75rem 1.75rem;
  max-height: 350px;
}

.faq-answer-copy {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.65;
}

/* ---------------- RODAPÉ ---------------- */
.footer-main {
  padding: 4.5rem 0 3rem 0;
  background: #040507;
  border-top: 1px solid var(--border-subtle);
}

.footer-copy-text {
  font-size: 0.82rem;
  color: var(--text-dark-gray);
  line-height: 1.6;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

/* ---------------- STICKY MOBILE CTA ---------------- */
.sticky-bar-cellphone {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(6, 7, 9, 0.96);
  border-top: 2px solid var(--volt);
  padding: 0.85rem 1.25rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sticky-inner-cellphone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-btn-cellphone {
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 900;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

/* ---------------- RESPONSIVIDADE ---------------- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-text-block {
    align-items: center;
    text-align: center;
  }

  .cta-box-hero {
    align-items: center;
  }

  .hero-numbers-bar {
    max-width: 500px;
    margin: 0 auto;
  }

  .who-is-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lifestyle-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-wrapper {
    padding: 2.5rem 0 3.5rem 0;
  }

  .hero-main-title {
    font-size: 2.15rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-wrap {
    padding: 2.5rem 1.5rem;
  }

  .price-box-big {
    padding: 1.5rem;
    width: 100%;
  }

  .sticky-bar-cellphone {
    display: block;
  }

  body {
    padding-bottom: 75px;
  }
}
