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

/* VARIAVEIS */
:root {
  --orange: #FF9500;
  --orange-dark: #FF8C00;
  --orange-neon: #FFA500;
  --bg: #08080f;
  --bg-2: #0d0d18;
  --bg-3: #11111e;
  --bg-4: #161625;
  --text: #e2e2f0;
  --text-muted: #7070900;
  --text-dim: #606078;
  --border: rgba(255,255,255,0.07);
  --border-orange: rgba(255,165,0,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.red { color: var(--orange); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,15,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,149,0,0.25);
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
  text-decoration: none;
}

.nav-logo span { color: var(--orange); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 62px;
  width: auto;
  opacity: 1;
  filter: drop-shadow(0 0 14px rgba(255,149,0,0.7));
}

.nav-btn {
  display: inline-block;
  padding: 11px 24px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.nav-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  background: var(--bg);
  padding: 100px 28px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,149,0,0.25);
}

.hero-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,165,0,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,149,0,0.12);
  border: 1px solid rgba(255,149,0,0.5);
  border-radius: 24px;
  padding: 7px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange-neon);
  letter-spacing: 1.5px;
  margin-bottom: 32px;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(255,149,0,0.2);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.15; }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.red { color: var(--orange); }

.hero-sub {
  font-size: 1.05rem;
  color: #8888a8;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.85;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 16px 34px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 15px rgba(255,149,0,0.4);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255,149,0,0.6);
}

.btn-large {
  padding: 20px 48px;
  font-size: 1rem;
}

.pulse {
  animation: pulse-red 2.4s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,149,0,0.7), 0 0 20px rgba(255,149,0,0.5); }
  50% { box-shadow: 0 0 0 20px rgba(255,149,0,0), 0 0 30px rgba(255,149,0,0.8); }
}

.btn-outline {
  display: inline-block;
  padding: 16px 34px;
  background: transparent;
  color: #cccce0;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* STATS */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-orange);
}

.stat {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat:last-child { border-right: none; }

.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.72rem;
  color: #60607a;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* SECTIONS */
.section {
  padding: 88px 0;
}

.section-dark { background: var(--bg); }
.section-darker { background: var(--bg-2); }

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label.light { color: rgba(255,255,255,0.6); }

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-title.light { color: #fff; }

.section-sub {
  font-size: 1rem;
  color: #7878a0;
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 0;
}

.section-sub.light { color: rgba(255,255,255,0.65); }

/* PROBLEMA */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.problem-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s;
}

.problem-item:hover { border-color: rgba(232,48,74,0.3); }

.problem-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.problem-item p {
  font-size: 0.9rem;
  color: #7878a0;
  line-height: 1.75;
}

.problem-item p strong {
  color: #c0c0d8;
  font-weight: 600;
}

/* CARDS ECOSSISTEMA */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.25s;
}

.card:hover {
  border-color: rgba(232,48,74,0.4);
  transform: translateY(-4px);
}

.card-featured {
  border-color: rgba(232,48,74,0.25);
  background: var(--bg-4);
}

.card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.card-featured .card-accent {
  background: var(--orange);
}

.card-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,149,0,0.12);
  border: 1px solid rgba(255,149,0,0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 0 12px rgba(255,149,0,0.2);
}

.card-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 10px;
  opacity: 0.7;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.card ul {
  list-style: none;
}

.card ul li {
  font-size: 0.88rem;
  color: #7878a0;
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}

.card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.card ul li strong {
  color: #c0c0da;
  font-weight: 600;
}

/* FLUXO */
.section-red {
  background: linear-gradient(135deg, #0d0800 0%, #150e00 50%, #0a0600 100%);
  border-top: 1px solid rgba(255,149,0,0.4);
  border-bottom: 1px solid rgba(255,149,0,0.4);
  padding: 88px 28px;
  position: relative;
  overflow: hidden;
}

.section-red::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,149,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.section-red .container {
  max-width: 1100px;
  margin: 0 auto;
}

.steps-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 52px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 180px;
  background: rgba(255,149,0,0.05);
  border: 1px solid rgba(255,149,0,0.25);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.step:hover {
  border-color: rgba(255,149,0,0.6);
  box-shadow: 0 0 24px rgba(255,149,0,0.2), inset 0 0 20px rgba(255,149,0,0.05);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(255,149,0,0.8), 0 0 40px rgba(255,149,0,0.4);
}

.step-icon {
  color: var(--orange);
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 0 8px rgba(255,149,0,0.8));
}

.step h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255,149,0,0.3);
}

.step p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.step-arrow {
  font-size: 1.6rem;
  color: var(--orange);
  padding: 0 10px;
  flex-shrink: 0;
  text-shadow: 0 0 12px rgba(255,149,0,0.9);
}

/* DIFERENCIAIS */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.diff-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s;
}

.diff-item:hover { 
  border-color: rgba(255,149,0,0.5);
  box-shadow: 0 0 15px rgba(255,149,0,0.15);
}

.diff-icon {
  margin-bottom: 14px;
}

.diff-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.diff-item p {
  font-size: 0.87rem;
  color: #70709a;
  line-height: 1.75;
}

/* CTA */
.section-cta {
  background: var(--bg);
  padding: 100px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(232,48,74,0.15);
}

.cta-container {
  position: relative;
  z-index: 2;
}

.cta-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255,165,0,0.2) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.trust-bar {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: #555570;
}

/* FOOTER */
.footer {
  background: #050508;
  padding: 40px 28px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.footer-logo span { color: var(--orange); }

.footer-copy {
  font-size: 0.82rem;
  color: #3a3a55;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.footer-links a {
  font-size: 0.8rem;
  color: #444460;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: #8888a8; }

.footer-links span {
  color: #2a2a40;
  font-size: 0.8rem;
}

.footer-links span {
  color: #2a2a40;
  font-size: 0.8rem;
}

/* CTA INTERMEDIÁRIOS */
.mid-cta {
  margin-top: 52px;
  text-align: center;
}

.btn-mid-cta {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 18px rgba(255,149,0,0.2), inset 0 0 18px rgba(255,149,0,0.03);
}

.btn-mid-cta:hover {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 28px rgba(255,149,0,0.5);
  transform: translateY(-2px);
}

.btn-mid-cta-light {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 18px rgba(255,255,255,0.1);
}

.btn-mid-cta-light:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 0 28px rgba(255,255,255,0.2);
}

/* CTA AJUSTES */
.cta-label,
.cta-title,
.cta-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cta-title {
  max-width: 700px;
}

.cta-sub {
  max-width: 600px;
  margin-bottom: 0;
}

.cta-btn-wrap {
  margin-top: 48px;
  text-align: center;
}

.cta-watermark {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 420px;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  filter: saturate(0) brightness(3);
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366 0%, #1eaa51 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: float-up 0.6s ease;
}

@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.whatsapp-float:hover {
  width: 62px;
  height: 62px;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
}

/* ANIMACOES DE ENTRADA */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-btn { padding: 9px 16px; font-size: 0.72rem; }

  .hero { padding: 70px 20px 60px; }
  .hero h1 { letter-spacing: -0.5px; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }

  .section { padding: 60px 0; }
  .section-red { padding: 60px 20px; }
  .section-cta { padding: 70px 20px; }

  .steps-row { gap: 12px; }
  .step-arrow { display: none; }
  .step { min-width: 140px; }

  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 320px; text-align: center; }

  .trust-bar { gap: 16px; }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float:hover {
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 24px 12px; }
  .stat-num { font-size: 1.7rem; }
}
