/* ============================================
   CHIPMASSA - LANDING PAGE PREMIUM
   Design System & Styles
   ============================================ */

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

:root {
  /* Colors */
  --brand-blue: #0088cc;
  --brand-blue-dark: #005580;
  --brand-blue-light: #33a2e0;
  --brand-blue-glow: rgba(0, 136, 204, 0.3);
  
  --brand-orange: #ff6600;
  --brand-orange-hover: #e65c00;
  --brand-orange-glow: rgba(255, 102, 0, 0.3);
  
  --wa-green: #25D366;
  --wa-dark: #128C7E;

  --dark-bg: #060B1A; /* Azul marinho escuro */
  --bg-secondary: #0A1224; /* Fundo alternativo escuro (Zebra) */
  --dark-card: #0F162D; /* Azul marinho para cards */
  --dark-card-2: #151D3A; /* Tom intermediário */
  --dark-border: rgba(255,255,255,0.08);
  --dark-border-hover: rgba(0, 136, 204, 0.3);

  --text-primary: #FFFFFF;
  --text-secondary: #8B9Dbe;
  --text-muted: #536280;

  --gradient-hero: linear-gradient(135deg, #040712 0%, #060B1A 50%, #0F1D3D 100%);
  --gradient-blue: linear-gradient(135deg, #0088cc, #005580);
  --gradient-orange: linear-gradient(135deg, #ff6600, #cc5200);
  --gradient-wa: linear-gradient(135deg, #25D366, #128C7E);

  /* Spacing */
  --section-pad: 96px;
  --section-pad-sm: 64px;

  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-blue: 0 0 40px rgba(0, 136, 204, 0.2);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--brand-blue-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-blue); }

/* ── TYPOGRAPHY UTILITIES ── */
.gradient-text {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wa-green {
  color: var(--wa-green);
}

.highlight-wa {
  color: var(--wa-green);
  text-shadow: 0 0 40px rgba(0, 136, 204, 0.25);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.2);
  color: var(--brand-blue);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gradient-orange);
  color: white;
  box-shadow: 0 4px 20px var(--brand-orange-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 102, 0, 0.45);
}

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

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1px solid var(--dark-border);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--gradient-orange);
  color: white !important;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px var(--brand-orange-glow), 0 0 0 1px rgba(255,102,0,0.3);
  letter-spacing: 0.2px;
}

.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--brand-orange-glow); }

.btn-wa {
  background: var(--gradient-wa);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 136, 204, 0.25);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 136, 204, 0.4);
}

.btn-lg { padding: 18px 36px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-xl { padding: 22px 44px; font-size: 18px; border-radius: var(--radius-lg); }
.btn-full { width: 100%; justify-content: center; }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(6, 11, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 10;
}

.logo-img {
  height: 36px;
  width: auto;
  max-width: 130px;
  display: block;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo:hover .logo-img {
  opacity: 0.9;
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,136,204,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,136,204,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 136, 204, 0.12), transparent 70%);
  top: -100px;
  right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.08), transparent 70%);
  bottom: 100px;
  left: -50px;
  animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.1); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.25);
  color: var(--brand-blue);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(0, 136, 204, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 16px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 480px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

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

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.trust-item svg { color: var(--brand-blue); flex-shrink: 0; }

/* ── PHONE MOCKUP ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.phone-mockup {
  position: relative;
}

.phone-frame {
  width: 280px;
  background: #1A1F29;
  border-radius: 40px;
  padding: 14px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(0, 136, 204, 0.15);
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #0F1318;
  border-radius: 30px;
  overflow: hidden;
  min-height: 560px;
}

.phone-header {
  background: linear-gradient(135deg, #0a1628 0%, #0d2040 100%);
  border-bottom: 1px solid rgba(0, 136, 204, 0.2);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px 4px;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.status-icons { display: flex; gap: 4px; align-items: center; }

.wa-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 12px;
}

.wa-avatar { flex-shrink: 0; }

.wa-info { display: flex; flex-direction: column; }
.wa-app-name { font-size: 15px; font-weight: 600; color: white; }
.wa-sub { font-size: 11px; color: rgba(255,255,255,0.7); }

.phone-body {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sms-bubble {
  background: #1A2332;
  border-radius: 12px 12px 12px 4px;
  padding: 12px 14px;
  border-left: 3px solid var(--brand-blue);
  animation: smsIn 0.5s ease 1s both;
}

.sms-from { font-size: 11px; color: var(--brand-blue); font-weight: 700; margin-bottom: 4px; }
.sms-text { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.sms-code { color: var(--text-primary); font-size: 15px; letter-spacing: 2px; }
.sms-time { font-size: 10px; color: var(--text-muted); margin-top: 6px; text-align: right; }

@keyframes smsIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.number-display {
  background: rgba(0, 136, 204, 0.08);
  border: 1px solid rgba(0, 136, 204, 0.2);
  border-radius: var(--radius-md);
  padding: 14px;
}

.number-label { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }

.number-value {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ddd-badge {
  background: var(--brand-blue);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.number-digits { font-size: 18px; font-weight: 700; color: var(--text-primary); font-family: var(--font-display); }

.number-ddd-tag { font-size: 11px; color: var(--brand-blue); margin-top: 6px; }

.status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 136, 204, 0.12);
  border: 1px solid rgba(0, 136, 204, 0.3);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 12px;
  color: var(--brand-blue-light);
  font-weight: 600;
  animation: fadeIn 0.5s ease 1.5s both;
}

.status-dot {
  width: 8px;
  height: 8px;
  color: var(--brand-blue-light);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.phone-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(0, 136, 204, 0.12), transparent 70%);
  z-index: 1;
  border-radius: 60px;
}

/* ── DDD CHIPS FLOATING ── */
.ddd-chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ddd-chip {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: white;
  font-family: var(--font-display);
  background: var(--gradient-blue);
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 16px rgba(0, 136, 204, 0.35);
  cursor: default;
  animation: floatChip 4s ease-in-out infinite;
}

.ddd-chip::after {
  content: attr(data-city);
  position: absolute;
  bottom: -18px;
  font-size: 9px;
  color: var(--brand-blue);
  white-space: nowrap;
}

.chip-11 { top: 10%; left: -20%; animation-delay: 0s; }
.chip-21 { top: 30%; right: -18%; animation-delay: 0.5s; }
.chip-31 { top: 60%; left: -22%; animation-delay: 1s; }
.chip-41 { top: 75%; right: -16%; animation-delay: 1.5s; }
.chip-51 { top: -5%; left: 20%; animation-delay: 0.3s; }
.chip-61 { top: -5%; right: 20%; animation-delay: 0.8s; }
.chip-71 { bottom: -5%; left: 15%; animation-delay: 1.3s; }
.chip-81 { bottom: -5%; right: 15%; animation-delay: 1.8s; }

@keyframes floatChip {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

/* ── STATS BAR ── */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin: 60px auto 0;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0 40px;
  flex: 1;
  min-width: 140px;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--dark-border);
  flex-shrink: 0;
}

/* ── DIFERENCIAL DDD ── */
.diferencial-ddd {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, rgba(0, 136, 204, 0.03) 0%, transparent 100%);
}

.diferencial-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0 36px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon.green { background: rgba(0, 136, 204, 0.1); color: var(--brand-blue); }
.benefit-icon.blue { background: rgba(59, 130, 246, 0.1); color: #60A5FA; }
.benefit-icon.purple { background: rgba(167, 139, 250, 0.1); color: #A78BFA; }

.benefit-item > div:last-child strong {
  display: block;
  color: var(--text-primary);
  font-size: 15px;
  margin-bottom: 4px;
}

.benefit-item > div:last-child p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── DDD SELECTOR ── */
.ddd-selector {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.ddd-selector-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-border);
}

.ddd-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.ddd-btn {
  background: var(--dark-card-2);
  border: 1px solid var(--dark-border);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.ddd-btn:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: rgba(0, 136, 204, 0.08);
}

.ddd-btn.selected {
  background: var(--gradient-blue);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 12px var(--brand-blue-glow);
}

.ddd-btn .ddd-city {
  display: block;
  font-size: 9px;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 2px;
}

.ddd-selected {
  background: rgba(0, 136, 204, 0.06);
  border: 1px solid rgba(0, 136, 204, 0.15);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
  min-height: 64px;
  display: flex;
  align-items: center;
}

.selected-number-preview {
  color: var(--text-secondary);
  font-size: 14px;
  width: 100%;
  text-align: center;
}

.selected-number-preview.has-number {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 1px;
}

/* ── COMO FUNCIONA ── */
.como-funciona {
  padding: var(--section-pad) 0;
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
}

.step-card {
  flex: 1;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover, .step-card.active {
  border-color: var(--brand-blue);
  background: rgba(0, 136, 204, 0.04);
  box-shadow: 0 0 30px rgba(0, 136, 204, 0.1);
  transform: translateY(-4px);
}

.step-card.active {
  background: rgba(0, 136, 204, 0.06);
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 136, 204, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--brand-blue);
  transition: all 0.3s;
}

.step-card:hover .step-icon, .step-card.active .step-icon {
  background: rgba(0, 136, 204, 0.18);
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.2);
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.video-wrapper {
  max-width: 800px;
  width: 100%;
  margin: 48px auto 0;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 136, 204, 0.15);
  background: var(--dark-card);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.step-connector {
  color: var(--brand-blue);
  opacity: 0.4;
  flex-shrink: 0;
  padding: 0 8px;
}

/* ── WHATSAPP FOCUS ── */
.wa-focus {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, transparent, rgba(37, 211, 102, 0.03), transparent);
}

.wa-focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wa-dashboard {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 60px rgba(37, 211, 102, 0.08);
}

.wa-dashboard-header {
  background: #075E54;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-logo-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
  font-size: 15px;
}

.online-dot { color: #25D366; font-size: 13px; }

.wa-accounts-list {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wa-account {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: background 0.2s;
  cursor: pointer;
}

.wa-account:hover { background: rgba(255,255,255,0.04); }
.wa-account.active-account { background: rgba(37, 211, 102, 0.06); border: 1px solid rgba(37, 211, 102, 0.15); }

.wa-acc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.wa-acc-info { flex: 1; min-width: 0; }
.wa-acc-number { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.wa-acc-status { font-size: 11px; margin-top: 2px; }
.wa-acc-status.success { color: var(--wa-green); }
.wa-acc-messages { font-size: 12px; color: var(--text-muted); white-space: nowrap; }

.wa-stats-mini {
  display: flex;
  border-top: 1px solid var(--dark-border);
  padding: 16px;
  gap: 0;
}

.wa-stat-mini {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--dark-border);
}

.wa-stat-mini:last-child { border-right: none; }
.wasm-val { display: block; font-size: 20px; font-weight: 800; color: var(--wa-green); }
.wasm-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.wa-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 36px;
}

.wa-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.wa-benefit-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.wa-benefit strong { display: block; color: var(--text-primary); font-size: 15px; margin-bottom: 4px; }
.wa-benefit p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── SERVIÇOS ── */
.servicos {
  padding: var(--section-pad) 0;
}

.services-featured {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 32px;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card.featured-service {
  align-items: flex-start;
}

.service-card:hover {
  border-color: var(--brand-blue);
  background: rgba(0, 136, 204, 0.04);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.featured-service {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(0,136,204,0.08), rgba(255,102,0,0.04));
  border-color: rgba(0, 136, 204, 0.2);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-bg { background: rgba(37,211,102,0.1); }
.tg-bg { background: rgba(34,158,217,0.1); }
.ig-bg { background: rgba(193,53,132,0.1); }
.google-bg { background: rgba(255,255,255,0.08); }
.uber-bg { background: rgba(255,255,255,0.08); }
.ifood-bg { background: rgba(234,29,44,0.1); }

.service-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.service-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-badge {
  display: inline-block;
  background: var(--gradient-blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 8px;
}

.services-more {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}

.more-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.more-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.more-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-border);
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.more-tag:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: rgba(0, 136, 204, 0.06);
}

/* ── COMPARATIVO ── */
.comparativo {
  padding: var(--section-pad) 0;
  background: var(--dark-card);
}

.comparison-table {
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.comp-header {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  background: rgba(0, 136, 204, 0.06);
  border-bottom: 1px solid var(--dark-border);
  padding: 16px 24px;
  gap: 16px;
}

.comp-header > div {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.our-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-blue);
  color: white;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
}

.comp-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  padding: 20px 24px;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
  transition: background 0.2s;
}

.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: rgba(255,255,255,0.02); }

.comp-feature strong { display: block; font-size: 15px; color: var(--text-primary); margin-bottom: 4px; }
.comp-feature p { font-size: 13px; color: var(--text-muted); }

.check-yes { color: var(--brand-blue); font-size: 14px; font-weight: 600; }
.check-no { color: #F87171; font-size: 14px; }
.check-partial { color: #FBBF24; font-size: 14px; }

.comp-telein { background: rgba(0, 136, 204, 0.04); border-radius: var(--radius-sm); padding: 8px 12px; }

/* ── SOCIAL PROOF ── */
.social-proof {
  padding: var(--section-pad) 0;
}

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

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(0, 136, 204, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.featured-testimonial {
  border-color: rgba(0, 136, 204, 0.25);
  background: rgba(0, 136, 204, 0.03);
  position: relative;
}

.featured-testimonial::before {
  content: '⭐ Destaque';
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--gradient-blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.stars { color: #FBBF24; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 14px; color: var(--text-primary); }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ── FAQ ── */
.faq {
  padding: var(--section-pad) 0;
  background: var(--dark-card);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--dark-card-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: rgba(0, 136, 204, 0.2); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--brand-blue); }
.faq-question[aria-expanded="true"] { color: var(--brand-blue); }
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }

.faq-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.2s;
}

.faq-question[aria-expanded="true"] .faq-arrow { color: var(--brand-blue); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── CTA FINAL ── */
.cta-final {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 136, 204, 0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
}

.cta-glow-2 {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(0, 136, 204, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 136, 204, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.25);
  color: var(--brand-blue);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.cta-feature svg { color: var(--brand-blue); flex-shrink: 0; }

.cta-buttons {
  display: flex;
  justify-content: center;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--dark-border);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 16px 0;
}

.footer-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-tags span {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 14px;
}

.footer-links a:hover { color: var(--brand-blue); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 13px; color: var(--text-muted); }

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--brand-blue); }

/* ── ANIMATIONS ── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-in {
  animation: fadeInUp 0.6s ease both;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; padding-top: 20px; }
  .hero-text { order: 1; }
  .hero-visual { order: 2; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-subtitle { margin: 0 auto 36px; }

  .diferencial-content { grid-template-columns: 1fr; gap: 48px; }
  .wa-focus-grid { grid-template-columns: 1fr; gap: 48px; }

  .services-featured {
    grid-template-columns: 1fr 1fr;
  }

  .featured-service {
    grid-column: 1 / -1;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .ddd-chips { display: none; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--dark-card);
    border-left: 1px solid var(--dark-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  }

  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 14px 0; border-bottom: 1px solid var(--dark-border); border-radius: 0; }
  .btn-nav { width: 100%; justify-content: center; margin-top: 16px; }

  .hamburger { display: flex; }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 0;
  }

  .stat-divider { display: none; }
  .stat-item { border-bottom: 1px solid var(--dark-border); padding: 20px; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--dark-border); }

  .steps-grid {
    flex-direction: column;
    gap: 16px;
  }

  .step-connector {
    transform: rotate(90deg);
  }

  .services-featured {
    grid-template-columns: 1fr;
  }

  .featured-service { grid-column: unset; }

  .comparison-table { overflow-x: auto; }
  .comp-header, .comp-row { min-width: 500px; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .ddd-grid { grid-template-columns: repeat(4, 1fr); }

  .phone-frame { width: 240px; }
  .phone-screen { min-height: 480px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-features { flex-direction: column; align-items: center; gap: 12px; }
  .ddd-comparison { flex-direction: column; gap: 12px; }
  .ddd-comp-arrow { transform: rotate(90deg); }
  .info-cards-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   NOVOS COMPONENTES – VERSÃO 2
   ═══════════════════════════════════════════════ */

/* ── HERO – APP ICONS STRIP ── */
.hero-title-sub {
  display: block;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: -0.3px;
  margin-top: 6px;
}

.hero-apps {
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease 0.25s both;
}

.hero-apps-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.hero-apps-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-service-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  padding: 2px;
  border: 1px solid var(--dark-border);
  transition: all 0.2s ease;
}

.hero-service-icon:hover {
  transform: translateY(-3px) scale(1.1);
  border-color: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.2);
}

.hero-service-more {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 8px;
  border-radius: 6px;
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.2);
  color: var(--brand-blue-light);
  font-size: 11px;
  font-weight: 700;
  cursor: default;
}

/* ── PHONE – NOVOS ELEMENTOS ── */
.phone-app-bar {
  padding: 8px 14px 12px;
}

.app-badge-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.phone-services-strip {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.ps-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ps-apps {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ps-app {
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font-display);
}

/* ── DDD COMPARISON ── */
.ddd-comparison {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.ddd-comp-col {
  flex: 1;
  min-width: 180px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ddd-comp-col.ours {
  border-color: rgba(0,136,204,0.25);
  background: rgba(0,136,204,0.04);
}

.ddd-comp-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.ddd-comp-col.ours .ddd-comp-label { color: var(--brand-blue); }

.ddd-comp-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
}

.ddd-comp-item.no { color: #F87171; }
.ddd-comp-item.no svg { color: #F87171; flex-shrink: 0; margin-top: 1px; }
.ddd-comp-item.yes { color: var(--text-secondary); }
.ddd-comp-item.yes svg { color: var(--brand-blue); flex-shrink: 0; margin-top: 1px; }
.ddd-comp-item strong { color: var(--text-primary); }

.ddd-comp-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
}

.ddd-info-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 28px;
}

.ddd-info-icon { font-size: 22px; flex-shrink: 0; line-height: 1; }
.ddd-info-box strong { display: block; color: var(--text-primary); font-size: 14px; margin-bottom: 4px; }
.ddd-info-box p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── DDD MAP CARD ── */
.ddd-map-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.ddd-map-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-border);
}

.ddd-available-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.ddd-avail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  border-radius: var(--radius-sm);
  border: 1px solid;
  cursor: default;
  transition: all 0.2s;
}

.ddd-avail-item.available {
  background: rgba(0, 136, 204, 0.08);
  border-color: rgba(0,136,204,0.25);
}

.ddd-avail-item.unavailable {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
  opacity: 0.5;
}

.ddd-num {
  font-size: 15px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1;
}

.ddd-avail-item.available .ddd-num { color: var(--brand-blue); }

.ddd-st {
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.ddd-legend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.available-dot { background: var(--brand-blue); }
.unavailable-dot { background: var(--text-muted); }

.ddd-premium-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #FBBF24;
  padding: 8px 12px;
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.15);
  border-radius: var(--radius-sm);
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(0, 136, 204, 0.06);
  border: 1px solid rgba(0, 136, 204, 0.2);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--brand-blue);
  padding: 18px 20px;
  margin-bottom: 24px;
}

.highlight-icon { font-size: 26px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.highlight-box strong { display: block; color: var(--text-primary); font-size: 15px; margin-bottom: 6px; }
.highlight-box p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ── IMPORTANTE SABER ── */
.importante-saber {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3), transparent);
}

.info-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.info-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid;
}

.info-card.info-ok {
  background: rgba(0,136,204,0.04);
  border-color: rgba(0, 136, 204, 0.2);
}

.info-card.info-warn {
  background: rgba(251,191,36,0.04);
  border-color: rgba(251,191,36,0.2);
}

.info-card.info-no {
  background: rgba(248,113,113,0.04);
  border-color: rgba(248,113,113,0.2);
}

.info-card-icon {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1;
}

.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-list li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.info-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.info-card.info-ok .info-list li::before { color: var(--brand-blue); }
.info-card.info-warn .info-list li::before { color: #FBBF24; }

.info-list li strong { color: var(--text-primary); }

.info-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.info-text strong { color: var(--text-primary); }

/* ── AVISO LEGAL ── */
.aviso-legal {
  padding: 40px 0;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--dark-border);
}

.legal-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}

.legal-icon { font-size: 28px; flex-shrink: 0; line-height: 1; margin-top: 2px; }

.legal-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.legal-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-text strong { color: var(--text-secondary); }

/* ── RESPONSIVE – NOVOS ── */
@media (max-width: 1024px) {
  .info-cards-grid { grid-template-columns: 1fr; }
  .ddd-comparison { flex-direction: column; }
  .ddd-comp-arrow { transform: rotate(90deg); }
}

@media (max-width: 768px) {
  .app-icons-row { gap: 6px; }
  .app-icon-pill { padding: 5px 10px; font-size: 12px; }
  .ddd-available-grid { grid-template-columns: repeat(5, 1fr); }
  .legal-box { flex-direction: column; gap: 12px; }
  .ddd-map-card { padding: 20px; }
  .footer-tags { flex-direction: column; }
  .highlight-box { flex-direction: column; gap: 10px; }
}
/* ── API INTEGRATION SECTION ── */
.api-integration {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 136, 204, 0.02) 100%);
  text-align: center;
}

.api-content-center {
  max-width: 900px;
  margin: 0 auto;
}

.api-benefits-center {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.api-benefit-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.25s;
}

.api-benefit-card:hover {
  border-color: rgba(0, 136, 204, 0.25);
  transform: translateY(-4px);
}

.api-benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 16px 0 10px;
}

.api-benefit-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── PANEL IMAGE PREVIEW ── */
.panel-preview-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-card), 0 0 50px rgba(0, 136, 204, 0.08);
  overflow: hidden;
  transition: border-color 0.25s;
}

.panel-preview-card:hover {
  border-color: rgba(0, 136, 204, 0.25);
}

.panel-img-fluid {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
  border: 1px solid rgba(255,255,255,0.04);
}

.panel-caption {
  padding: 10px 4px 2px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

/* ── SISTEMA PREVIEW (LARGURA COMPLETA) ── */
.sistema-preview {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 136, 204, 0.01) 100%);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.panel-full-preview {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow-card), 0 10px 50px rgba(0, 0, 0, 0.6);
  max-width: 1100px;
  margin: 0 auto;
  transition: border-color 0.3s ease;
}

.panel-full-preview:hover {
  border-color: rgba(0, 136, 204, 0.2);
}

.panel-large-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-caption-large {
  padding: 14px 8px 4px;
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.panel-caption-large span {
  background: rgba(0, 136, 204, 0.08);
  color: var(--brand-blue);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(0, 136, 204, 0.15);
}

@media (max-width: 768px) {
  .api-benefits-center {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .panel-full-preview {
    padding: 8px;
  }
}




/* -- COMPARATIVO -- */
.comparativo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .comparativo-grid {
    grid-template-columns: 1fr;
  }
}

.comparativo-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.comparativo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-border);
}

.comparativo-header h3 {
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 600;
}

.icon-positivo {
  color: var(--wa-green);
}

.icon-negativo {
  color: var(--text-secondary);
}

.comparativo-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparativo-lista li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.comparativo-lista li::before {
  content: '';
  color: var(--brand-blue);
  font-weight: bold;
}

