/* ==========================================================================
   AGÊNCIA DETECTAVENDA — DESIGN SYSTEM & ESTILOS DE ALTA CONVERSÃO
   Inspirado estritamente na identidade visual do DetectaVenda.com.br
   ========================================================================== */

:root {
  /* Paleta Base Escura (Dark Theme Principal) */
  --brand-deep: #02050a;
  --paper: #050910;
  --surface: #0a111d;
  --surface-soft: #0e1928;
  --surface-hover: #121e30;
  
  /* Cores de Acento & Destaque */
  --accent: #1597ff;
  --accent-hover: #35b9ff;
  --accent-2: #04d9f5;
  --accent-soft: #102c4f;
  --accent-glow: rgba(21, 151, 255, 0.35);
  
  /* Tipografia & Linhas */
  --ink: #f6f9ff;
  --muted: #95a7bd;
  --line: rgba(255, 255, 255, 0.10);
  --line-hover: rgba(255, 255, 255, 0.22);
  --line-accent: rgba(21, 151, 255, 0.4);
  
  /* Cores Semânticas */
  --success: #61d6a4;
  --success-soft: rgba(97, 214, 164, 0.12);
  --danger: #ff7b85;
  --danger-soft: rgba(255, 123, 133, 0.12);
  --warning: #f0b44f;
  --warning-soft: rgba(240, 180, 79, 0.12);

  /* Layout & Espaçamento */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-width: 1160px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--brand-deep);
}

body {
  font-family: var(--font-family);
  background-color: var(--brand-deep);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Background Glows */
.glow-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 100%;
  border-radius: 50%;
  filter: blur(120px);
}

.glow-hero {
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 550px;
  background: radial-gradient(circle at center, rgba(7, 59, 145, 0.65) 0%, rgba(7, 17, 31, 0.4) 50%, transparent 80%);
}

.glow-mid {
  top: 35%;
  right: -200px;
  width: 700px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(4, 217, 245, 0.15) 0%, rgba(21, 151, 255, 0.1) 40%, transparent 80%);
}

.glow-bottom {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(7, 59, 145, 0.45) 0%, rgba(4, 217, 245, 0.1) 50%, transparent 80%);
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

p {
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Acentos & Badges de Texto */
.accent-text {
  color: var(--accent);
}

.accent-glow-text {
  color: var(--accent);
  text-shadow: 0 0 25px rgba(21, 151, 255, 0.4);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(21, 151, 255, 0.10);
  border: 1px solid rgba(21, 151, 255, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* Header Fixo Glassmorphism */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 5, 10, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  height: 72px;
  display: flex;
  align-items: center;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media (min-width: 900px) {
  .header-content {
    justify-content: space-between;
  }
}

.logo-wrapper {
  display: inline-flex;
  align-items: center;
}

.brand-logo-combo {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  transition: transform 0.25s ease;
  line-height: 1;
}

.logo-link:hover .brand-logo-combo {
  transform: scale(1.03);
}

.brand-logo-d {
  height: 38px;
  width: auto;
  max-width: 44px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(21, 151, 255, 0.4));
}

.brand-logo-text {
  font-size: 1.42rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  position: relative;
  top: 1px;
  user-select: none;
}

.brand-part-white {
  color: #ffffff;
}

.brand-part-blue {
  color: #1597ff;
  background: linear-gradient(135deg, #1597ff 0%, #04d9f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

.nav-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.35rem 0.1rem;
  position: relative;
}

.nav-item:hover {
  color: var(--ink);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  font-family: inherit;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(21, 151, 255, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 28px rgba(21, 151, 255, 0.55);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--line-hover);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 0.98rem;
}

.btn-xl {
  padding: 1.15rem 2.2rem;
  font-size: 1.05rem;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 5rem 0 5.5rem;
  text-align: center;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-accent);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  margin-bottom: 1.75rem;
}

.radar-icon {
  animation: pulse-ring 2s infinite ease-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.045em;
  max-width: 980px;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 780px;
  margin-bottom: 2.25rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

.hero-subtitle strong {
  color: var(--ink);
}

/* Triade de Pilares no Hero (Abaixo da Animação) */
.hero-triad {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: rgba(10, 17, 29, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 1.6rem;
  border-radius: 9999px;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  max-width: 100%;
}

.triad-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--ink);
  white-space: nowrap;
}

.triad-item strong {
  color: #ffffff;
  font-weight: 700;
}

.triad-sub {
  color: var(--muted);
  font-weight: 400;
}

.triad-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
  flex-shrink: 0;
}

.triad-divider {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0 0.15rem;
}

@media (max-width: 768px) {
  .hero-triad {
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    gap: 0.75rem;
    width: 100%;
    max-width: 420px;
  }
  
  .triad-item {
    white-space: normal;
  }

  .triad-divider {
    display: none;
  }
}

.hero-tech-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2.75rem;
}

.tech-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.check-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* ==========================================================
   SIMULADOR INTERATIVO: JORNADA COMPLETA DO CLIENTE NO HERO
   ========================================================== */
.hero-journey-interactive {
  width: 100%;
  max-width: 960px;
  background: var(--paper-2);
  border: 1px solid rgba(21, 151, 255, 0.32);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.8), 0 0 45px -10px rgba(21, 151, 255, 0.25);
  margin-top: 1rem;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.journey-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.4rem;
  background: rgba(2, 5, 10, 0.85);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.journey-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

@media (max-width: 640px) {
  .window-dot {
    display: none !important;
  }
}

.journey-title-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

@media (max-width: 640px) {
  .journey-header-left {
    width: 100%;
  }
  .journey-title-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }
}

.pulse-dot-green {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success);
  animation: live-pulse 2s infinite ease-in-out;
}

.pulse-dot-green-mini {
  width: 6px;
  height: 6px;
  background-color: var(--success);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px var(--success);
}

.journey-speed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: var(--muted);
  background: rgba(21, 151, 255, 0.1);
  border: 1px solid rgba(21, 151, 255, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}

.active-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}

.journey-speed-badge strong {
  color: var(--accent-2);
  font-weight: 700;
}

/* Stepper / Abas das Etapas */
.journey-stepper-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.4rem;
  background: rgba(5, 9, 16, 0.95);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  gap: 0.5rem;
  scrollbar-width: none;
}

.journey-stepper-nav::-webkit-scrollbar {
  display: none;
}

.step-nav-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.step-nav-btn:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}

.step-nav-btn.active {
  color: #ffffff;
  background: rgba(21, 151, 255, 0.18);
  border-color: rgba(21, 151, 255, 0.45);
  box-shadow: 0 0 15px rgba(21, 151, 255, 0.2);
}

.step-nav-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.step-nav-btn.active .step-nav-num {
  background: var(--accent);
  color: #ffffff;
}

.step-nav-line {
  height: 1px;
  background: var(--line);
  flex-grow: 1;
  min-width: 12px;
}

/* Stage & Cards */
.journey-stage-container {
  padding: 1.5rem;
  min-height: 280px;
  position: relative;
}

.journey-card-step {
  display: none;
  animation: stage-fade-in 0.35s ease forwards;
}

.journey-card-step.active {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@keyframes stage-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-caption-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

.step-caption-box strong {
  color: #ffffff;
  display: inline-block;
  margin-right: 0.35rem;
}

/* 1. Mockup Google Search */
.mini-browser-mockup {
  background: #02050a;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.google-search-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--ink);
}

.search-typing-text {
  flex-grow: 1;
  color: var(--ink);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-btn-fake {
  font-size: 0.72rem;
  background: var(--accent);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
}

.google-ad-result {
  background: rgba(21, 151, 255, 0.04);
  border: 1px solid rgba(21, 151, 255, 0.2);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
}

.ad-tag-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  flex-wrap: nowrap;
  overflow: hidden;
}

.ad-badge {
  font-weight: 800;
  color: #ffffff;
  background: #1a73e8;
  padding: 0.12rem 0.45rem;
  border-radius: 4px;
  font-size: 0.68rem;
  flex-shrink: 0;
}

.ad-url {
  color: #9aa0a6;
  font-size: 0.74rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ad-title {
  color: #8ab4f8;
  font-weight: 700;
  font-size: 0.95rem;
}

.ad-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.ad-click-pointer {
  align-self: flex-start;
  margin-top: 0.65rem;
  background: rgba(4, 217, 245, 0.08);
  border: 1px solid rgba(4, 217, 245, 0.4);
  color: #04d9f5;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(4, 217, 245, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  max-width: 100%;
}

.click-pulse-ring {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #04d9f5;
  box-shadow: 0 0 8px #04d9f5;
  display: inline-block;
  animation: live-pulse 1.8s infinite ease-in-out;
  flex-shrink: 0;
}

/* 2. Mockup Landing Page */
.mini-landing-mockup {
  background: #02050a;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.landing-header-fake {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.6rem;
}

.landing-logo-fake {
  font-weight: 900;
  font-size: 0.9rem;
  color: #fff;
}

.landing-secure-tag {
  font-size: 0.72rem;
  color: #61d6a4;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
}

.landing-content-fake h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.landing-content-fake p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.landing-cta-fake {
  background: #25D366;
  color: #ffffff;
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  position: relative;
}

/* 3. Mockup WhatsApp IA */
.mini-whatsapp-mockup {
  background: #0c131d;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.wa-header {
  background: #111b27;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid var(--line);
}

.wa-avatar {
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.72rem;
}

.wa-info {
  display: flex;
  flex-direction: column;
}

.wa-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
}

.wa-status {
  font-size: 0.7rem;
  color: #61d6a4;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.wa-chat-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.wa-bubble {
  max-width: 82%;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.4;
  position: relative;
}

.wa-bubble.wa-client {
  align-self: flex-start;
  background: #1e293b;
  color: #e2e8f0;
}

.wa-bubble.wa-ai {
  align-self: flex-end;
  background: #054640;
  color: #d1fae5;
  border-left: 3px solid #25D366;
}

.ai-badge-chat {
  font-size: 0.65rem;
  font-weight: 800;
  color: #34d399;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.2rem;
}

.wa-time {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
  margin-top: 0.25rem;
}

/* 4. Mockup CRM Pipeline */
.mini-crm-mockup {
  background: #02050a;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.crm-pipeline-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.crm-column {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.crm-column.col-highlight {
  background: rgba(21, 151, 255, 0.06);
  border-color: var(--line-accent);
}

.crm-col-header {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.col-count {
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.65rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  color: var(--ink);
}

.col-count.active-count {
  background: var(--accent);
  color: #fff;
}

.crm-card-item {
  background: #0c131d;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.crm-card-item.opacity-dim {
  opacity: 0.45;
}

.crm-card-item.card-moving-active {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(21, 151, 255, 0.25);
}

.crm-card-badge {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--accent-2);
  background: rgba(21, 151, 255, 0.15);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
}

.crm-card-item .lead-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.crm-card-item .lead-val {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--success);
}

.crm-card-item .lead-tag {
  font-size: 0.68rem;
  color: var(--muted);
}

/* 5. Mockup ROI / Venda */
.mini-roi-mockup {
  background: #02050a;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sale-success-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(97, 214, 164, 0.08);
  border: 1px solid rgba(97, 214, 164, 0.3);
  padding: 0.85rem 1.15rem;
  border-radius: 8px;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sale-check-icon {
  width: 32px;
  height: 32px;
  background: #61d6a4;
  color: #02050a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
}

.sale-title-group {
  display: flex;
  flex-direction: column;
}

.sale-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
}

.sale-amount {
  font-size: 1.15rem;
  font-weight: 900;
  color: #61d6a4;
}

.payment-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: #61d6a4;
  background: rgba(97, 214, 164, 0.15);
  border: 1px solid rgba(97, 214, 164, 0.3);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.tracking-attribution-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.track-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.track-label {
  color: var(--muted);
}

.track-val {
  color: var(--ink);
  font-weight: 600;
}

/* Progress Fill */
.journey-progress-bar-container {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.journey-progress-fill {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, #1597ff, #04d9f5);
  transition: width 0.4s ease, transform 0.4s ease;
}

/* Responsividade Refinada para Mobile & Tablets */
@media (max-width: 768px) {
  .hero-journey-interactive {
    margin-top: 0.75rem;
    border-radius: var(--radius-md);
  }

  .journey-header {
    padding: 0.75rem 0.9rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .journey-header-left {
    justify-content: flex-start;
    width: 100%;
  }

  .journey-title-pill {
    font-size: 0.76rem;
    line-height: 1.35;
    white-space: normal;
    text-align: left;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    width: 100%;
  }

  .journey-speed-badge {
    width: 100%;
    justify-content: center;
    font-size: 0.72rem;
  }

  .journey-stepper-nav {
    padding: 0.6rem 0.75rem;
    justify-content: flex-start;
    gap: 0.45rem;
    scroll-behavior: smooth;
  }

  .step-nav-line {
    display: none;
  }

  .step-nav-btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.72rem;
    border-radius: 6px;
  }

  .journey-stage-container {
    padding: 1rem 0.85rem;
    min-height: auto;
  }

  .mini-browser-mockup,
  .mini-landing-mockup,
  .mini-roi-mockup {
    padding: 0.85rem;
  }

  .ad-click-pointer {
    position: static;
    margin-top: 0.65rem;
    width: 100%;
    justify-content: center;
  }

  .landing-cta-fake {
    width: 100%;
    justify-content: center;
    font-size: 0.78rem;
    padding: 0.55rem 0.85rem;
  }

  .wa-bubble {
    max-width: 92%;
    font-size: 0.76rem;
  }

  .crm-pipeline-columns {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .crm-column:not(.col-highlight) {
    display: none;
  }

  .sale-success-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.75rem;
  }

  .track-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.35rem;
  }

  .step-caption-box {
    padding: 0.75rem 0.85rem;
    font-size: 0.78rem;
  }
}

/* SEÇÕES GENÉRICAS */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--brand-deep);
  border-top: 1px solid var(--line);
}

.section-dark-alt {
  background-color: var(--paper);
  border-top: 1px solid var(--line);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.65rem;
  }
}

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* SEÇÃO 1: COMPARATIVO */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 860px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
}

.card-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 1.25rem;
}

.badge-danger {
  background: var(--danger-soft);
  color: var(--danger);
  border: 1px solid rgba(255, 123, 133, 0.3);
}

.badge-accent {
  background: rgba(21, 151, 255, 0.15);
  color: var(--accent);
  border: 1px solid var(--line-accent);
}

.comparison-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.comp-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.comp-item p {
  font-size: 0.85rem;
  line-height: 1.45;
}

.icon-cross {
  color: var(--danger);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
}

.icon-check {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.2;
}

.comp-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
}

.comp-head-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.price-anchor-tag {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  white-space: nowrap;
}

.anchor-danger {
  background: rgba(255, 123, 133, 0.14);
  color: #ff9aa2;
  border: 1px solid rgba(255, 123, 133, 0.3);
}

.anchor-success {
  background: rgba(97, 214, 164, 0.14);
  color: #61d6a4;
  border: 1px solid rgba(97, 214, 164, 0.3);
}

.cost-summary-box {
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-md);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cost-danger {
  background: rgba(255, 123, 133, 0.08);
  border: 1px solid rgba(255, 123, 133, 0.25);
}

.cost-success {
  background: rgba(21, 151, 255, 0.10);
  border: 1px solid var(--line-accent);
}

.cost-summary-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cost-summary-header span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cost-danger .cost-summary-header span {
  color: #ff9aa2;
}

.cost-success .cost-summary-header span {
  color: var(--accent-2);
}

.cost-amount-danger {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ff7b85;
}

.cost-amount-success {
  font-size: 1.15rem;
  font-weight: 900;
  color: #04d9f5;
  text-shadow: 0 0 15px rgba(4, 217, 245, 0.3);
}

.cost-summary-desc {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
}

.highlight-border {
  border: 1px solid rgba(21, 151, 255, 0.35);
  background: radial-gradient(circle at top left, rgba(21, 151, 255, 0.08) 0%, rgba(10, 17, 29, 0.95) 60%);
  box-shadow: 0 10px 35px rgba(21, 151, 255, 0.12);
}

/* Box da Grande Promessa Humanizada */
/* Box da Grande Promessa */
.promise-highlight-box {
  background: linear-gradient(135deg, rgba(7, 59, 145, 0.35) 0%, rgba(10, 17, 29, 0.85) 100%);
  border: 1px solid rgba(21, 151, 255, 0.4);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 15px 45px rgba(7, 59, 145, 0.25);
}

@media (min-width: 768px) {
  .promise-highlight-box {
    flex-direction: row;
    align-items: center;
    padding: 3rem;
  }
}

.promise-icon {
  background: rgba(21, 151, 255, 0.2);
  color: var(--accent-2);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(4, 217, 245, 0.3);
}

.promise-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent-2);
  text-transform: uppercase;
}

.promise-statement {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.5rem;
}

@media (min-width: 768px) {
  .promise-statement {
    font-size: 1.65rem;
  }
}

.promise-sub {
  font-size: 0.95rem;
  color: var(--muted);
}

/* SEÇÃO 2: PIPELINE STEPS (5 ETAPAS) */
.pipeline-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .pipeline-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .pipeline-steps-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.step-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-hover);
  transform: translateY(-4px);
}

.step-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.step-number {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.step-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(21, 151, 255, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.step-subtitle-tech {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 0.85rem;
}

.step-body {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.step-pill {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  text-align: center;
}

/* Flow Banner com Esteira Infinita e Animada */
.flow-banner {
  background: rgba(10, 17, 29, 0.7);
  border: 1px solid rgba(21, 151, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.flow-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.flow-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.flow-marquee-track {
  display: flex;
  width: max-content;
  animation: flow-marquee-scroll 24s linear infinite;
  will-change: transform;
}

.flow-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes flow-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.flow-chain {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem 0.5rem;
}

.flow-node {
  background: rgba(15, 25, 42, 0.9);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f6f9ff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  flex-shrink: 0;
}

.flow-node:hover {
  border-color: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.flow-node.highlight {
  background: rgba(21, 151, 255, 0.2);
  border-color: var(--accent-2);
  color: var(--accent-2);
  box-shadow: 0 0 15px rgba(4, 217, 245, 0.3);
}

.flow-arrow {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 800;
  text-shadow: 0 0 8px var(--accent-glow);
  flex-shrink: 0;
}

/* SEÇÃO 3: ENTREGÁVEIS COMPLETOS */
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .deliverables-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.deliverable-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.deliverable-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-hover);
  transform: translateY(-4px);
}

.deliv-header-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.deliv-header-group .deliv-icon-wrapper {
  margin-bottom: 0;
}

.deliv-badge-cert {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #34a853;
  background: rgba(52, 168, 83, 0.12);
  border: 1px solid rgba(52, 168, 83, 0.3);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.card-cert-preview {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 0.6rem 0.85rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.card-cert-preview:hover {
  transform: scale(1.02);
}

.card-cert-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  object-fit: contain;
}

.deliv-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(21, 151, 255, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.deliv-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
  color: #ffffff;
}

.deliv-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.deliv-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--ink);
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.deliv-bullets li {
  position: relative;
  padding-left: 1.2rem;
}

.deliv-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

/* SEÇÃO: SEGMENTOS ATENDIDOS (QUEM ATENDEMOS) */
.segments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .segments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.segment-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.segment-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-accent);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5), 0 0 25px -5px rgba(21, 151, 255, 0.2);
}

.segment-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(21, 151, 255, 0.12);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(21, 151, 255, 0.2);
}

.segment-tag-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.segment-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #ffffff;
  line-height: 1.25;
}

.segment-body {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.segment-examples {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.ex-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-right: 0.2rem;
  width: 100%;
  margin-bottom: 0.2rem;
}

.ex-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.segments-callout {
  background: linear-gradient(135deg, rgba(7, 59, 145, 0.25) 0%, rgba(2, 5, 10, 0.7) 100%);
  border: 1px solid var(--line-accent);
  border-radius: var(--radius-lg);
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.callout-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(21, 151, 255, 0.2);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.callout-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.callout-text strong {
  color: #ffffff;
  font-size: 1rem;
}

.callout-text span {
  color: var(--muted);
}

@media (max-width: 640px) {
  .segments-callout {
    flex-direction: column;
    text-align: center;
    padding: 1.4rem;
  }
}

/* SEÇÃO 4: BASTIDORES / TECH STACK */
.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .split-layout {
    grid-template-columns: 1.1fr 1fr;
  }
}

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

.quote-card {
  background: rgba(21, 151, 255, 0.06);
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}

.quote-text {
  font-size: 1rem;
  font-style: italic;
  color: #e6f0fb;
  line-height: 1.5;
}

.quote-text strong {
  color: var(--accent-2);
}

.bullet-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--ink);
}

.check-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(97, 214, 164, 0.15);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

.tech-stack-card {
  background: #070d17;
  border: 1px solid rgba(21, 151, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(2, 5, 10, 0.8);
}

.tech-stack-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-2);
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.live-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse-dot 1.5s infinite;
}

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

.tech-layers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.layer-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.layer-item.highlight-layer {
  border-color: rgba(4, 217, 245, 0.35);
  background: rgba(4, 217, 245, 0.05);
}

.layer-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.layer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tech-chip {
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  color: var(--ink);
}

.accent-chip {
  background: rgba(21, 151, 255, 0.2);
  color: var(--accent-2);
  border: 1px solid rgba(21, 151, 255, 0.4);
}

.tech-stack-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.client-view-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(97, 214, 164, 0.08);
  border: 1px solid rgba(97, 214, 164, 0.25);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: #cce8da;
}

.client-view-box svg {
  color: var(--success);
  flex-shrink: 0;
}

/* SEÇÃO 5: SIMULADOR INTERATIVO */
.calculator-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .calculator-card {
    grid-template-columns: 1.1fr 1fr;
    padding: 3rem;
  }
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  justify-content: center;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.input-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.val-highlight {
  color: var(--accent-2);
  font-size: 1.1rem;
  font-weight: 800;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 12px var(--accent);
  border: 2px solid #ffffff;
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.res-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.res-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  display: block;
  margin-bottom: 0.45rem;
}

.res-number {
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.res-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.gain-badge {
  margin-top: 0.85rem;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  background: rgba(97, 214, 164, 0.15);
  border: 1px solid rgba(97, 214, 164, 0.35);
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
}

/* SEÇÃO 6: MODELO COMERCIAL */
.commercial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 960px) {
  .commercial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
}

.pricing-card.highlight-card {
  background: radial-gradient(circle at top, rgba(21, 151, 255, 0.15) 0%, rgba(10, 17, 29, 0.95) 75%);
  border: 1px solid var(--accent);
  box-shadow: 0 10px 40px rgba(21, 151, 255, 0.2);
  transform: translateY(-4px);
}

.pricing-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.pricing-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  min-height: 42px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--ink);
}

.feat-check {
  color: var(--muted);
  font-weight: 800;
}

.accent-check {
  color: var(--accent-2);
}

.pricing-foot {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.6rem;
  border-radius: 6px;
  text-align: center;
  border: 1px solid var(--line);
}

.highlight-foot {
  background: rgba(21, 151, 255, 0.15);
  color: var(--accent-2);
  border-color: rgba(21, 151, 255, 0.35);
}

/* Banner da Equação */
.equation-banner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.eq-sep {
  color: var(--accent);
  font-weight: 900;
}

.highlight-eq {
  color: var(--success);
}

/* SEÇÃO 7: FAQ ACORDEÃO */
.faq-container {
  max-width: 820px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--line-accent);
  background: rgba(255, 255, 255, 0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.75rem;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-chevron {
  color: var(--muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

.faq-answer strong {
  color: var(--ink);
}

/* SEÇÃO 8: FORMULÁRIO DE DIAGNÓSTICO (CTA PRINCIPAL) */
.form-section {
  padding: 5rem 0 6rem;
  background-color: var(--brand-deep);
  border-top: 1px solid var(--line);
}

.form-container {
  max-width: 860px;
}

.form-wrapper-box {
  background: #08111e;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  .form-wrapper-box {
    padding: 3.5rem;
  }
}

.form-header-area {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-main-title {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .form-main-title {
    font-size: 2.35rem;
  }
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 680px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #dbe5f0;
}

.form-group input,
.form-group select {
  width: 100%;
  background: #0d1a2c;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(21, 151, 255, 0.2);
}

.form-group select {
  cursor: pointer;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.submit-btn {
  width: 100%;
}

.form-privacy-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.form-privacy-note svg {
  flex-shrink: 0;
  color: var(--accent);
}

.form-success-message {
  text-align: center;
  padding: 2.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-success-message.hidden {
  display: none;
}

.success-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--success-soft);
  border: 1px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.form-success-message h3 {
  font-size: 1.6rem;
  color: #ffffff;
}

.form-success-message p {
  font-size: 0.95rem;
  max-width: 480px;
  margin-bottom: 1rem;
}

/* FOOTER */
.footer {
  background: #020408;
  border-top: 1px solid var(--line);
  padding-top: 4.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 860px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 480px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
}

.footer-links-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
}

@media (min-width: 680px) {
  .footer-bottom-content {
    flex-direction: row;
  }
}

/* Spinner e Estados de Envio do Formulário */
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
