:root {
  --bg-dark: #050706;
  --bg-darker: #020302;
  --text-primary: #f0f5f2;
  --text-secondary: #9ca6a0;
  
  --seedata-green: #1fa84f;
  --seedata-green-glow: rgba(31, 168, 79, 0.4);
  --seedata-green-light: #44cf76;
  
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(16px);
  
  --shadow-glow: 0 0 30px var(--seedata-green-glow);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

.text-green { color: var(--seedata-green-light) !important; }
.text-muted-glass { color: rgba(255,255,255,0.4); }

/* AMBIENT GLOWS */
.ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--seedata-green-glow) 0%, transparent 60%);
  filter: blur(80px);
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}
.right-glow { top: -200px; right: -200px; }
.left-glow { bottom: 10%; left: -300px; background: radial-gradient(circle, rgba(14, 80, 52, 0.5) 0%, transparent 60%); }


/* NAVBAR */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 7, 6, 0.75);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.navbar-brand-text {
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
}

.logo-img { height: 38px; width: auto; }

.navbar-nav .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: color 0.3s ease, background 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.custom-toggler {
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 1.4rem;
}

/* BUTTONS */
.btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--seedata-green);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  box-shadow: 0 4px 15px rgba(31, 168, 79, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-glow::before {
  content: "";
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-glow:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(31, 168, 79, 0.5);
}

.btn-glow:hover::before { left: 100%; }

.btn-glow.large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-outline-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 500;
}

.btn-outline-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-glass.large { padding: 16px 32px; font-size: 1.1rem; }

/* BADGES AND TYPOGRAPHY */
.badge-tech {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(31, 168, 79, 0.1);
  border: 1px solid rgba(31, 168, 79, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--seedata-green-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--seedata-green-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--seedata-green-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.gradient-text {
  background: linear-gradient(90deg, var(--seedata-green-light), #81e2a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* HERO SECTION */
.hero-section {
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.metric-item { display: flex; flex-direction: column; }
.metric-val { font-size: 1.8rem; font-weight: 700; color: #fff; line-height: 1; }
.metric-label { font-size: 0.85rem; color: var(--text-secondary); margin-top: 4px; }
.metric-divider { width: 1px; height: 40px; background: var(--glass-border); }

.hero-card-container { position: relative; width: 100%; padding-right: 0; }

.glass-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: var(--seedata-green);
  filter: blur(100px);
  opacity: 0.4;
  border-radius: 50%;
}

.alpr-demo {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  z-index: 2;
}

.cam-feed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(68, 207, 118, 0.2);
  background:
    linear-gradient(180deg, rgba(68, 207, 118, 0.08) 0%, transparent 16%),
    linear-gradient(180deg, #08100c 0%, #0b1410 58%, #121d18 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(31, 168, 79, 0.08);
}

.cam-corners::before,
.cam-corners::after,
.cam-extra-corners::before,
.cam-extra-corners::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--seedata-green-light);
  border-style: solid;
  z-index: 10;
}

.cam-corners::before {
  top: 12px;
  left: 12px;
  border-width: 2px 0 0 2px;
}

.cam-corners::after {
  bottom: 12px;
  right: 12px;
  border-width: 0 2px 2px 0;
}

.cam-extra-corners::before {
  top: 12px;
  right: 12px;
  border-width: 2px 2px 0 0;
}

.cam-extra-corners::after {
  bottom: 12px;
  left: 12px;
  border-width: 0 0 2px 2px;
}

.road-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(68, 207, 118, 0.12) 0%, transparent 34%),
    linear-gradient(180deg, #05110d 0%, #091611 55%, #101b16 100%);
}

.road-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.2;
}

.road-scene::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 47%;
  background: linear-gradient(180deg, #17221d 0%, #0b120f 100%);
  border-top: 2px solid rgba(113, 146, 125, 0.26);
}

.lane-line {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 4px;
  height: 220px;
  transform: perspective(220px) rotateX(42deg);
  transform-origin: bottom center;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 191, 71, 0.95) 0px,
    rgba(255, 191, 71, 0.95) 24px,
    transparent 24px,
    transparent 48px
  );
  opacity: 0.55;
}

.vehicle {
  position: absolute;
  left: 50%;
  bottom: 38%;
  width: 55%;
  transform: translateX(-50%);
  z-index: 5;
}

.vehicle-body {
  position: relative;
  width: 100%;
  height: 72px;
  border-radius: 60% 60% 10% 10% / 80% 80% 10% 10%;
  background: linear-gradient(180deg, #24342c 0%, #14201a 100%);
  box-shadow: 0 -4px 20px rgba(68, 207, 118, 0.12);
}

.vehicle-body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35px;
  background: linear-gradient(180deg, #1c2a24 0%, #101813 100%);
  border-radius: 0 0 10% 10%;
}

.vehicle-windshield {
  position: absolute;
  top: 10%;
  left: 20%;
  right: 20%;
  height: 50%;
  border-radius: 40% 40% 10% 10%;
  border: 1px solid rgba(68, 207, 118, 0.14);
  background: linear-gradient(135deg, rgba(68, 207, 118, 0.18) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.headlights {
  position: absolute;
  bottom: 20%;
  width: 100%;
  padding: 0 8%;
  display: flex;
  justify-content: space-between;
}

.headlight {
  width: 16px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 220, 100, 0.92);
  box-shadow: 0 0 20px 6px rgba(255, 220, 100, 0.32), 0 0 60px 20px rgba(255, 200, 50, 0.08);
}

.plate-on-vehicle {
  position: absolute;
  left: 50%;
  bottom: 8%;
  z-index: 10;
  width: 96px;
  padding: 4px 8px 4px 22px;
  transform: translateX(-50%);
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  background: #ecebe5;
}

.plate-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.plate-city {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1a3a8a;
}

.plate-number {
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #111;
  transition: opacity 0.25s ease;
}

.plate-strip {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(180deg, #1a3a8a 0%, #2244aa 100%);
}

.plate-flag {
  width: 10px;
  height: 7px;
  border-radius: 1px;
  background: linear-gradient(180deg, #009c3b 33%, #ffdf00 33%, #ffdf00 66%, #002776 66%);
}

.plate-stars,
.plate-country {
  font-size: 6px;
  line-height: 1;
  color: #ffdf00;
  letter-spacing: 0.5px;
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 20;
  background: linear-gradient(90deg, transparent, rgba(68, 207, 118, 0.1), var(--seedata-green-light), rgba(68, 207, 118, 0.1), transparent);
  box-shadow: 0 0 10px rgba(68, 207, 118, 0.4);
  animation: scanMove 3s ease-in-out infinite;
}

@keyframes scanMove {
  0% { top: 10%; opacity: 0; }
  10% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}

.detect-box {
  position: absolute;
  left: 50%;
  bottom: 26%;
  width: 112px;
  height: 36px;
  z-index: 15;
  transform: translateX(-50%);
  border: 1px solid var(--seedata-green-light);
  border-radius: 4px;
  box-shadow: 0 0 16px rgba(68, 207, 118, 0.24), inset 0 0 12px rgba(68, 207, 118, 0.06);
  animation: boxPulse 3s ease-in-out infinite;
}

@keyframes boxPulse {
  0%, 100% { border-color: rgba(68, 207, 118, 0.75); box-shadow: 0 0 12px rgba(68, 207, 118, 0.22); }
  50% { border-color: #b4ffca; box-shadow: 0 0 22px rgba(68, 207, 118, 0.48); }
}

.hud-overlay {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
}

.hud-stat {
  position: absolute;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.4px;
  color: rgba(171, 243, 194, 0.82);
  text-shadow: 0 0 10px rgba(31, 168, 79, 0.18);
}

.hud-tl { top: 36px; left: 36px; }
.hud-tr { top: 36px; right: 36px; text-align: right; }
.hud-bl { bottom: 36px; left: 36px; }
.hud-br { bottom: 36px; right: 36px; text-align: right; }

.recog-panel,
.log-panel {
  border: 1px solid rgba(68, 207, 118, 0.12);
  background: linear-gradient(180deg, rgba(10, 15, 12, 0.8) 0%, rgba(6, 10, 8, 0.92) 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.recog-panel {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.recog-plate-display {
  position: relative;
  min-width: 190px;
  overflow: hidden;
  border: 2px solid #bbb;
  border-radius: 8px;
  background: #ecebe5;
  padding: 8px 18px 8px 36px;
}

.recog-plate-left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: linear-gradient(180deg, #1a3a8a 0%, #2244aa 100%);
}

.recog-plate-text {
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #111;
  transition: opacity 0.25s ease;
}

.recog-info {
  flex: 1;
  min-width: 0;
}

.recog-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.recog-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--seedata-green-light);
  box-shadow: 0 0 10px rgba(68, 207, 118, 0.85);
  animation: pulse 2s infinite;
}

.recog-label,
.conf-pct {
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--seedata-green-light);
}

.recog-meta {
  font-size: 13px;
  color: var(--text-secondary);
}

.recog-confidence {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.conf-bar {
  flex: 1;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.conf-fill {
  height: 100%;
  width: 98%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--seedata-green), var(--seedata-green-light), #b4ffca);
  animation: confAnim 2s ease infinite alternate;
}

@keyframes confAnim {
  from { width: 95%; }
  to { width: 99%; }
}

.log-panel {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
  color: var(--text-secondary);
}

.log-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.log-row:last-child { border-bottom: none; }

.log-time {
  min-width: 58px;
  color: rgba(171, 243, 194, 0.58);
}

.log-plate {
  min-width: 92px;
  color: var(--seedata-green-light);
}

.log-ok {
  color: #c8ffd8;
}

.log-conf {
  margin-left: auto;
  color: #ffd166;
}

.log-time-muted,
.log-plate-muted,
.log-conf-muted,
.log-waiting {
  opacity: 0.4;
}

.log-waiting {
  color: var(--text-secondary);
}

.main-visual-card {
  position: relative;
  background: rgba(10, 15, 12, 0.6);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 10px;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transform: translateY(0);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.floating-badge {
  position: absolute;
  background: rgba(20, 25, 22, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
.floating-badge.top-right { top: -20px; right: -20px; }
.floating-badge.bottom-left { bottom: -20px; left: -20px; }


/* GENERAL SECTIONS */
.section-header .title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-header .subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

/* DIFERENCIAIS */
.diferenciais-section { padding: 100px 0; position: relative; z-index: 2; }

.glass-feature-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  backdrop-filter: var(--glass-blur);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(31, 168, 79, 0.4);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 0 20px rgba(31, 168, 79, 0.05);
}

.icon-wrap {
  width: 56px; height: 56px;
  background: rgba(31, 168, 79, 0.1);
  border: 1px solid rgba(31, 168, 79, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--seedata-green-light);
  margin-bottom: 24px;
}

.glass-feature-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.glass-feature-card p { color: var(--text-secondary); margin: 0; font-size: 0.95rem; }


/* COMO FUNCIONA */
.how-it-works-section { padding: 100px 0; background: var(--bg-darker); }

.glass-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.step-row {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.015);
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.step-row:hover {
  background: rgba(31, 168, 79, 0.05);
  border-color: rgba(31, 168, 79, 0.2);
  transform: translateX(10px);
}

.step-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--seedata-green);
  opacity: 0.8;
  width: 40px;
  flex-shrink: 0;
}

.step-content h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; color: #fff; }
.step-content p { font-size: 0.95rem; color: var(--text-secondary); margin: 0; }


/* DASHBOARD */
.dashboard-section { padding: 100px 0; position: relative; }

.dashboard-presentation {
  position: relative;
  border-radius: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.dashboard-glow-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 80%;
  background: var(--seedata-green);
  filter: blur(120px);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.dashboard-img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dash-feature {
  padding: 20px;
  background: rgba(0,0,0,0.3);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  height: 100%;
}
.dash-feature i { font-size: 1.8rem; color: var(--seedata-green-light); margin-bottom: 16px; display: inline-block; }
.dash-feature h5 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.dash-feature p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

/* SCALE BANNER */
.scale-section { padding: 40px 0; }
.scale-banner {
  background: linear-gradient(135deg, rgba(31, 168, 79, 0.15) 0%, rgba(10, 25, 15, 0.8) 100%);
  border: 1px solid rgba(31, 168, 79, 0.3);
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow-glow);
}
.scale-banner h2 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.scale-banner p { color: #d0ded6; font-size: 1.1rem; margin: 0; max-width: 600px; }
.massive-number {
  display: block;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  background: linear-gradient(90deg, #fff, var(--seedata-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.massive-label { display: block; font-size: 1rem; color: var(--text-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; }


/* CTA SECTION */
.cta-section { padding: 60px 0 100px; }
.cta-card {
  position: relative;
  text-center;
  background: rgba(20, 25, 22, 0.6);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px;
  background: var(--seedata-green);
  filter: blur(100px);
  opacity: 0.3;
}

.cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; position: relative; z-index: 1; margin-bottom: 20px; }
.cta-desc { font-size: 1.15rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto 40px; position: relative; z-index: 1; }
.cta-actions { display: flex; justify-content: center; gap: 16px; position: relative; z-index: 1; flex-wrap: wrap; }


/* FOOTER */
.cyber-footer { background: #030403; }
.border-top-glass { border-top: 1px solid var(--glass-border); }
.footer-heading { font-size: 1rem; font-weight: 600; margin-bottom: 20px; color: #fff; }
.footer-moto { color: var(--text-secondary); max-width: 320px; }
.social-links { display: flex; gap: 12px; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
  font-size: 1.1rem;
}
.social-icon:hover { background: var(--seedata-green); color: #fff; transform: translateY(-3px); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-secondary); }
.footer-links a:hover { color: var(--seedata-green-light); padding-left: 5px; }

/* ANIMATIONS - Scroll reveal (similar ao seedata-alpr.html) */
.fade-in-up,
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.visible,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.hidden-if-missing { display: none !important; }

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-section { padding: 120px 0 80px; text-align: center; }
  .hero-description { margin: 0 auto 30px; }
  .hero-actions { justify-content: center; }
  .hero-metrics { justify-content: center; }
  .hero-card-container { max-width: 640px; margin: 0 auto; }
  .alpr-demo { margin: 0 auto; }
  .hud-tl, .hud-tr { top: 28px; }
  .hud-bl, .hud-br { bottom: 28px; }
  .hud-tl, .hud-bl { left: 28px; }
  .hud-tr, .hud-br { right: 28px; }
  .recog-panel { text-align: left; }
  .floating-badge { padding: 8px 12px; font-size: 0.75rem; }
  .floating-badge.top-right { right: -5px; }
  .floating-badge.bottom-left { left: -5px; bottom: -5px; }
  .navbar-collapse {
    background: #0a0e0c;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin-top: 10px;
    position: absolute;
    width: calc(100% - 24px);
    left: 12px;
  }
}

@media (max-width: 767px) {
  .hero-metrics { flex-direction: column; gap: 16px; border-top: none; }
  .metric-divider { display: none; }
  .cam-feed { border-radius: 18px; }
  .hud-stat { font-size: 8px; }
  .hud-tl, .hud-tr { top: 18px; }
  .hud-bl, .hud-br { bottom: 18px; }
  .hud-tl, .hud-bl { left: 18px; }
  .hud-tr, .hud-br { right: 18px; }
  .recog-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
  }
  .recog-plate-display {
    width: 100%;
    min-width: 0;
  }
  .recog-plate-text {
    font-size: 22px;
    letter-spacing: 2px;
  }
  .log-row {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 8px;
  }
  .log-conf { margin-left: 0; }
  .scale-banner { padding: 30px 20px; text-align: center; }
  .scale-banner .text-md-end { text-align: center !important; }
  .cta-card { padding: 50px 20px; }
}
