/* ==========================================================================
   ARENACLASHOFFICIAL — LANDING PAGE DE ALTA CONVERSÃO (DESEJO PURO + IMPULSO)
   Design System de Máximo Contraste (Preto Carvão + Verde Elétrico + Ouro)
   ========================================================================== */

:root {
  /* Fundo de Estádio Noturno / Preto Carvão Profundo */
  --bg-main: #080a10;
  --bg-surface: #0f131d;
  --bg-card: rgba(18, 24, 38, 0.85);
  --bg-card-hover: rgba(26, 34, 54, 0.95);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(255, 215, 0, 0.4);

  /* Tipografia Ultra-Nítida */
  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-muted: #8e9bb0;

  /* Cores Estratégicas de Conversão */
  --cta-green: #00e676;
  --cta-green-hover: #00c853;
  --cta-green-dark: #052e16;
  --accent-gold: #ffd700;
  --accent-gold-light: #ffea79;
  --urgency-red: #ef4444;

  --font-display: "Barlow Condensed", "Impact", -apple-system, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-green: 0 0 35px rgba(0, 230, 118, 0.45);
  --shadow-card: 0 15px 40px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-main);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  background-image: 
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(255, 215, 0, 0.06), transparent 70%),
    radial-gradient(circle 500px at 85% 20%, rgba(0, 230, 118, 0.04), transparent),
    radial-gradient(circle 600px at 10% 70%, rgba(0, 230, 118, 0.04), transparent);
}

.lp-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.05;
}

/* ==========================================================================
   BOTÃO DE MÁXIMA CONVERSÃO (VERDE ELÉTRICO NÉON)
   ========================================================================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--cta-green);
  color: #03150b;
  padding: 20px 42px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-green), inset 0 2px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  animation: pulse-green 2.5s infinite;
}

.btn-cta:hover {
  background: var(--cta-green-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 50px rgba(0, 230, 118, 0.75), inset 0 2px 0 rgba(255, 255, 255, 0.8);
  color: #000;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 25px rgba(0, 230, 118, 0.4); }
  50% { box-shadow: 0 0 45px rgba(0, 230, 118, 0.85); }
}

/* ==========================================================================
   1. BARRA DE URGÊNCIA NO TOPO
   ========================================================================== */
.urgency-bar {
  background: #140507;
  border-bottom: 1px solid rgba(239, 68, 68, 0.4);
  padding: 10px 16px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.urgency-pill {
  background: var(--urgency-red);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
}

.timer-box {
  background: #000;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: monospace;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ==========================================================================
   2. HEADER COMPACTO
   ========================================================================== */
.site-header {
  padding: 14px 0;
  background: rgba(8, 10, 16, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 90;
}

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

.brand-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-gold {
  color: var(--accent-gold);
}

.header-live-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  color: #69f0ae;
  font-weight: 600;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cta-green);
  box-shadow: 0 0 10px var(--cta-green);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.header-cta-sm {
  background: var(--cta-green);
  color: #03150b;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.35);
  transition: transform 0.2s;
}

.header-cta-sm:hover {
  transform: translateY(-2px);
  background: #00c853;
}

/* ==========================================================================
   3. HERO SECTION (FOCO TOTAL NO DESEJO E VISUAL)
   ========================================================================== */
.hero {
  padding: 45px 0 35px;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  margin-bottom: 18px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.hero-highlight {
  color: var(--accent-gold);
}

.hero-desc {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-light);
  max-width: 760px;
  margin: 0 auto 30px;
  line-height: 1.55;
}

.hero-desc strong {
  color: #fff;
}

/* Media Showcase no Hero */
.hero-media-wrapper {
  max-width: 820px;
  margin: 0 auto 32px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border-card);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 215, 0, 0.1);
}

.hero-media-wrapper img {
  width: 100%;
  display: block;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-trust-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 13.5px;
}

/* ==========================================================================
   4. OS 3 MAIORES DESEJOS (HISTÓRIAS DE IDENTIFICAÇÃO)
   ========================================================================== */
.desires-section {
  padding: 60px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-headline {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-tag {
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.section-headline h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 10px;
}

.section-headline p {
  color: var(--text-muted);
  font-size: 16px;
}

.desires-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.desire-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, border-color 0.25s;
}

.desire-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  background: var(--bg-card-hover);
}

.desire-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.desire-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff;
}

.desire-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

.desire-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   5. COMO FUNCIONA (3 PASSOS RÁPIDOS)
   ========================================================================== */
.steps-section {
  padding: 60px 0;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 35px;
}

.step-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #000;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-box h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.step-box p {
  color: var(--text-muted);
  font-size: 14.5px;
}

/* ==========================================================================
   6. OFERTA IRRESISTÍVEL ($9.90 USD + VITALÍCIO)
   ========================================================================== */
.offer-section {
  padding: 60px 0 80px;
}

.offer-card {
  max-width: 650px;
  margin: 0 auto;
  background: linear-gradient(180deg, #101524 0%, #0a0d16 100%);
  border: 2px solid var(--accent-gold);
  border-radius: 28px;
  padding: 45px 36px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 215, 0, 0.15);
  text-align: center;
  position: relative;
}

.offer-badge-top {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: #000;
  padding: 6px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
}

.strike-price {
  color: var(--text-muted);
  font-size: 20px;
  text-decoration: line-through;
  display: block;
  margin-top: 10px;
}

.main-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 4px 0 8px;
}

.currency {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-gold);
}

.amount {
  font-family: var(--font-display);
  font-size: 82px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.period {
  color: var(--text-muted);
  font-size: 16px;
}

.price-sub {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 26px;
}

.includes-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.includes-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #fff;
}

.check-green {
  color: var(--cta-green);
  font-weight: 800;
  font-size: 18px;
}

/* Order Bump Box */
.bump-box {
  background: rgba(255, 215, 0, 0.08);
  border: 1.5px dashed var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  text-align: left;
  margin-bottom: 26px;
  cursor: pointer;
  transition: background 0.2s;
}

.bump-box:hover {
  background: rgba(255, 215, 0, 0.14);
}

.bump-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.bump-check {
  width: 22px;
  height: 22px;
  accent-color: var(--cta-green);
  cursor: pointer;
}

.bump-label {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--accent-gold);
}

.bump-val {
  margin-left: auto;
  font-weight: 800;
  color: #fff;
}

.bump-text {
  font-size: 13px;
  color: var(--text-light);
  padding-left: 32px;
}

.guarantee-info {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 13px;
}

/* ==========================================================================
   7. DEPOIMENTOS RÁPIDOS
   ========================================================================== */
.testimonials-section {
  padding: 60px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}

.test-stars {
  color: var(--accent-gold);
  font-size: 15px;
  margin-bottom: 10px;
}

.test-quote {
  color: var(--text-light);
  font-size: 14.5px;
  font-style: italic;
  margin-bottom: 14px;
}

.test-author {
  font-size: 13px;
  color: var(--text-muted);
}

.test-author strong {
  color: #fff;
  display: block;
}

/* ==========================================================================
   8. FAQ SIMPLES (3 PERGUNTAS)
   ========================================================================== */
.faq-section {
  padding: 60px 0 80px;
}

.faq-card-wrap {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.faq-box h4 {
  font-size: 19px;
  color: #fff;
  margin-bottom: 8px;
}

.faq-box p {
  color: var(--text-light);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ==========================================================================
   9. RODAPÉ
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0 70px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   10. TOAST DE PROVA SOCIAL
   ========================================================================== */
.toast-social {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #0f1420;
  border: 1px solid var(--cta-green);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 230, 118, 0.25);
  z-index: 999;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  max-width: 360px;
}

.toast-social.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-flag {
  font-size: 22px;
}

.toast-msg {
  font-size: 12.5px;
  line-height: 1.35;
  color: #fff;
}

.toast-time-ago {
  color: var(--text-muted);
  font-size: 11px;
  display: block;
}

/* ==========================================================================
   11. STICKY MOBILE CTA BAR
   ========================================================================== */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 10, 16, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(0, 230, 118, 0.4);
  padding: 12px 16px;
  z-index: 998;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: space-between;
}

.sticky-text {
  display: flex;
  flex-direction: column;
}

.sticky-val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.sticky-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.sticky-btn {
  padding: 12px 24px;
  font-size: 17px;
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE-FIRST)
   ========================================================================== */
@media (max-width: 860px) {
  .desires-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
  .offer-card {
    padding: 40px 20px;
  }
  .amount {
    font-size: 68px;
  }
}

@media (max-width: 600px) {
  .urgency-bar {
    font-size: 12px;
    flex-wrap: wrap;
  }
  .header-live-pill {
    display: none;
  }
  .btn-cta {
    font-size: 19px;
    padding: 16px 28px;
    width: 100%;
  }
  .sticky-mobile {
    display: flex;
  }
  .toast-social {
    left: 12px;
    right: 12px;
    bottom: 75px;
    max-width: none;
  }
  .site-footer {
    padding-bottom: 85px;
  }
}
