/* ==========================================================================
   ACELERADOR DE VENDAS PARA ACADEMIAS - ESTILOS VISUAIS DE ALTA CONVERSÃO
   Paleta: Dark Mode Corporativo, Verde WhatsApp (#25D366), Dourado/Laranja Urgência (#FF5722/#F59E0B), Ciano IA (#38BDF8)
   ========================================================================== */

:root {
  --bg-main: #070B14;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --border-card: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(37, 211, 102, 0.35);

  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  --accent-green: #25D366;
  --accent-green-hover: #20BA56;
  --accent-green-glow: rgba(37, 211, 102, 0.25);

  --accent-orange: #FF5722;
  --accent-amber: #F59E0B;
  --accent-amber-glow: rgba(245, 158, 11, 0.2);

  --accent-cyan: #38BDF8;
  --accent-cyan-glow: rgba(56, 189, 248, 0.2);

  --danger-red: #EF4444;
  --danger-red-bg: rgba(239, 68, 68, 0.1);

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow-green: 0 0 40px rgba(37, 211, 102, 0.2);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(37, 211, 102, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 10% 30%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Tipografia e Títulos */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   BARRA DE URGÊNCIA NO TOPO
   ========================================================================== */
.top-urgency-bar {
  background: linear-gradient(90deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
  padding: 10px 16px;
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
}

.top-urgency-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
  font-size: 0.88rem;
  font-weight: 600;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FCD34D;
  background: rgba(245, 158, 11, 0.15);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #EF4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #EF4444;
  animation: pulseAnimation 1.5s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.countdown-box {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E2E8F0;
}

.countdown-timer {
  display: inline-flex;
  gap: 6px;
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: #38BDF8;
  background: rgba(15, 23, 42, 0.8);
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.top-bar-cta {
  background: var(--accent-green);
  color: #052e16;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--transition);
}

.top-bar-cta:hover {
  background: var(--accent-green-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   SEÇÃO 1: HERO / DOBRA PRINCIPAL
   ========================================================================== */
.hero-section {
  padding: 60px 0 80px;
  position: relative;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #38BDF8;
  background: rgba(56, 189, 248, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.75rem;
  line-height: 1.18;
  margin-bottom: 22px;
  color: #FFFFFF;
}

.hero-title .highlight-text {
  background: linear-gradient(135deg, #FF6B00 0%, #FFB703 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-subtitle {
  font-size: 1.12rem;
  line-height: 1.65;
  color: #CBD5E1;
  margin-bottom: 30px;
}

.hero-subtitle strong {
  color: #FFFFFF;
}

.event-details-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.detail-pill {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-card);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(8px);
}

.detail-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.detail-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.detail-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.detail-pill.highlight-investment {
  border-color: rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.06);
}

.price-strike {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-right: 6px;
}

.price-free {
  color: var(--accent-green);
}

/* Micro prova social no Hero */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #0F172A;
  margin-left: -10px;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.proof-text strong {
  color: #FFFFFF;
}

/* Formulário de Inscrição (Card Flutuante) */
.form-card {
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.7), var(--shadow-glow-green);
  position: relative;
  backdrop-filter: blur(16px);
}

.form-card-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #000000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.form-header {
  margin-bottom: 24px;
  text-align: left;
}

.form-header h3 {
  font-size: 1.45rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.form-header p {
  font-size: 0.9rem;
  color: #94A3B8;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  font-size: 1.1rem;
  color: #64748B;
  pointer-events: none;
}

.form-input, .form-select {
  width: 100%;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: 0.95rem;
  padding: 13px 14px 13px 44px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
  background: rgba(15, 23, 42, 1);
}

.form-input::placeholder {
  color: #64748B;
}

.form-select option {
  background: #0F172A;
  color: #FFFFFF;
}

.btn-cta {
  background: linear-gradient(135deg, #25D366 0%, #10B981 100%);
  color: #032313;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  margin-top: 6px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #2ae06f 0%, #13c98d 100%);
}

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

.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: rotate(25deg);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-150%) rotate(25deg); }
  30%, 100% { transform: translateX(150%) rotate(25deg); }
}

.form-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #94A3B8;
  margin-top: 12px;
}

/* ==========================================================================
   SEÇÃO 2: O ESPELHO DA REALIDADE (A DOR)
   ========================================================================== */
.pain-section {
  padding: 90px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  background: rgba(255, 87, 34, 0.1);
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 87, 34, 0.25);
  margin-bottom: 16px;
}

.section-tag.green {
  color: var(--accent-green);
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.25);
}

.section-header-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: 2.25rem;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #94A3B8;
}

/* Timeline / Simulação da Perda no WhatsApp */
.whatsapp-leak-simulator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 44px;
  backdrop-filter: blur(16px);
}

.phone-mockup {
  background: #0B141A;
  border: 10px solid #1F2C34;
  border-radius: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  max-width: 380px;
  margin: 0 auto;
}

.phone-header {
  background: #202C33;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #111B21;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  background: #00A884;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.chat-info h5 {
  font-size: 0.9rem;
  color: #E9EDEF;
  font-weight: 600;
}

.chat-info span {
  font-size: 0.72rem;
  color: #8696A0;
}

.phone-body {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #0B141A;
  background-image: radial-gradient(#1f2c34 0.75px, transparent 0.75px);
  background-size: 16px 16px;
  font-size: 0.84rem;
}

.chat-bubble {
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 10px;
  position: relative;
  line-height: 1.4;
}

.chat-bubble.incoming {
  align-self: flex-start;
  background: #202C33;
  color: #E9EDEF;
  border-top-left-radius: 0;
}

.chat-bubble.outgoing {
  align-self: flex-end;
  background: #005C4B;
  color: #E9EDEF;
  border-top-right-radius: 0;
}

.chat-time {
  font-size: 0.68rem;
  color: #8696A0;
  display: block;
  text-align: right;
  margin-top: 4px;
}

.delay-indicator {
  align-self: center;
  background: rgba(239, 68, 68, 0.18);
  border: 1px dashed #EF4444;
  color: #FCA5A5;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  text-align: center;
}

.leak-breakdown {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.leak-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(30, 41, 59, 0.4);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-orange);
}

.step-number {
  background: rgba(255, 87, 34, 0.2);
  color: var(--accent-orange);
  font-weight: 800;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 0.9rem;
  color: #94A3B8;
}

.leak-callout {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 20px;
  border-radius: var(--radius-md);
  color: #FECACA;
  font-size: 0.95rem;
}

.leak-callout strong {
  color: #FFFFFF;
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

/* ==========================================================================
   SEÇÃO 3: AS ESTATÍSTICAS REAIS DO MERCADO (DADOS DO RALO)
   ========================================================================== */
.stats-section {
  padding: 90px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.7) 50%, transparent 100%);
}

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

.stat-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(12px);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--accent-cyan-glow);
}

.stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.stat-source-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent-cyan);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card.alert .stat-number {
  background: linear-gradient(135deg, #FF6B00 0%, #FFB703 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card.danger .stat-number {
  background: linear-gradient(135deg, #F87171 0%, #EF4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-title {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.stat-desc {
  font-size: 0.92rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO: O QUE VOCÊ VAI VER NESSE EVENTO
   ========================================================================== */
.event-highlights-section {
  padding: 90px 0 40px;
  position: relative;
}

.event-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.highlight-topic-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.highlight-topic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.highlight-topic-card.card-blue {
  border-top: 3px solid var(--accent-cyan);
}
.highlight-topic-card.card-blue:hover {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--accent-cyan-glow);
}

.highlight-topic-card.card-urgent {
  border-top: 3px solid #F59E0B;
  background: linear-gradient(160deg, rgba(30, 27, 75, 0.4) 0%, rgba(15, 23, 42, 0.9) 100%);
}
.highlight-topic-card.card-urgent:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--accent-amber-glow);
}

.highlight-topic-card.card-green {
  border-top: 3px solid var(--accent-green);
}
.highlight-topic-card.card-green:hover {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--accent-green-glow);
}

.highlight-topic-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
}

.badge-blue {
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent-cyan);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.badge-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #FCD34D;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.badge-green {
  background: rgba(37, 211, 102, 0.12);
  color: var(--accent-green);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.highlight-topic-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.highlight-topic-title {
  font-size: 1.3rem;
  color: #FFFFFF;
  line-height: 1.3;
}

.highlight-topic-desc {
  font-size: 0.94rem;
  color: #94A3B8;
  line-height: 1.65;
}

/* ==========================================================================
   SEÇÃO 4: A NOVA ARQUITETURA COMERCIAL
   ========================================================================== */
.content-section {
  padding: 70px 0 90px;
  position: relative;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.pillar-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-cyan);
  opacity: 0.7;
}

.pillar-card:nth-child(2)::before {
  background: var(--accent-orange);
}

.pillar-card:nth-child(3)::before {
  background: var(--accent-green);
}

.pillar-card:nth-child(4)::before {
  background: #A855F7;
}

.pillar-card:hover {
  transform: translateY(-4px);
  background: rgba(30, 41, 59, 0.7);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-card);
}

.pillar-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-title {
  font-size: 1.35rem;
  color: #FFFFFF;
}

.pillar-desc {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.65;
}

.pillar-tag {
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #CBD5E1;
  width: fit-content;
}

/* ==========================================================================
   SEÇÃO 5: PARA QUEM É (E PARA QUEM NÃO É)
   ========================================================================== */
.target-section {
  padding: 90px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.target-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  backdrop-filter: blur(12px);
}

.target-card.is-for-you {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.8) 0%, rgba(6, 44, 25, 0.4) 100%);
  border: 1px solid rgba(37, 211, 102, 0.3);
  box-shadow: 0 10px 30px rgba(6, 44, 25, 0.3);
}

.target-card.not-for-you {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.8) 0%, rgba(45, 10, 10, 0.35) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.target-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.target-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.target-card.is-for-you .target-icon {
  background: rgba(37, 211, 102, 0.2);
  color: var(--accent-green);
}

.target-card.not-for-you .target-icon {
  background: rgba(239, 68, 68, 0.2);
  color: var(--danger-red);
}

.target-card-header h3 {
  font-size: 1.4rem;
  color: #FFFFFF;
}

.target-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.target-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #CBD5E1;
}

.target-check {
  font-size: 1.1rem;
  color: var(--accent-green);
  line-height: 1.4;
  flex-shrink: 0;
}

.target-cross {
  font-size: 1.1rem;
  color: var(--danger-red);
  line-height: 1.4;
  flex-shrink: 0;
}

/* ==========================================================================
   SEÇÃO 6: QUEM ESTARÁ NO COMANDO (OS PALESTRANTES)
   ========================================================================== */
.speakers-section {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 50%, rgba(30, 41, 59, 0.4) 0%, transparent 70%);
}

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

.speaker-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.speaker-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.speaker-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: #020617;
}

.speaker-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.speaker-card:hover .speaker-photo {
  transform: scale(1.05);
}

.speaker-role-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.85);
  color: #38BDF8;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  backdrop-filter: blur(8px);
}

.speaker-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}

.speaker-name {
  font-size: 1.45rem;
  color: #FFFFFF;
}

.speaker-headline {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-cyan);
  line-height: 1.4;
}

.speaker-bio {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO 7: CTA FINAL (CHAMADA DE URGÊNCIA)
   ========================================================================== */
.final-cta-section {
  padding: 100px 0 120px;
  position: relative;
}

.final-cta-card {
  background: radial-gradient(circle at 50% 0%, rgba(37, 211, 102, 0.15) 0%, rgba(15, 23, 42, 0.95) 70%);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.8), var(--shadow-glow-green);
  position: relative;
  overflow: hidden;
}

.final-cta-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B00, #25D366, #38BDF8);
}

.final-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #FCD34D;
  background: rgba(245, 158, 11, 0.15);
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  margin-bottom: 24px;
}

.final-title {
  font-size: 2.75rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.final-desc {
  font-size: 1.15rem;
  color: #CBD5E1;
  max-width: 760px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.final-event-meta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 36px;
}

.final-warning-box {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #FECACA;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  max-width: 620px;
  margin: 0 auto 36px;
}

.btn-cta-large {
  font-size: 1.15rem;
  padding: 20px 42px;
  margin: 0 auto;
  max-width: 520px;
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
  background: #04070D;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-link {
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
}

.footer-link:hover {
  color: #FFFFFF;
}

.admin-trigger-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.admin-trigger-btn:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   MODAIS (REDIRECIONAMENTO WHATSAPP, LGPD E ADMIN LEADS)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.modal-card {
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-icon-success {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.2);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
  border: 2px solid var(--accent-green);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.3);
}

.modal-title {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.modal-text {
  font-size: 0.95rem;
  color: #CBD5E1;
  margin-bottom: 24px;
  line-height: 1.6;
}

.redirect-countdown-badge {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-green);
  background: rgba(37, 211, 102, 0.1);
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.3);
  margin-bottom: 24px;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Modal Admin de Leads */
.admin-table-wrap {
  max-height: 280px;
  overflow-y: auto;
  margin: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  text-align: left;
}

.admin-table th, .admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table th {
  background: rgba(30, 41, 59, 0.9);
  color: #FFFFFF;
}

.admin-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   RESPONSIVIDADE (TABLETS E CELULARES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .whatsapp-leak-simulator {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }

  .stats-grid,
  .event-highlights-grid {
    grid-template-columns: 1fr;
  }

  .speakers-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

  .final-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .top-urgency-content {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .top-bar-cta {
    display: none;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .event-details-bar {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px 20px;
  }

  .btn-cta {
    font-size: 0.95rem;
    padding: 14px 18px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .final-title {
    font-size: 1.85rem;
  }

  .final-cta-card {
    padding: 40px 20px;
  }

  .final-event-meta {
    flex-direction: column;
    gap: 8px;
    border-radius: var(--radius-md);
  }
}
