/* =========================
   RESET + BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0b0b0d;
  --card: #141418;
  --soft: #1c1c22;
  --text: #ffffff;
  --muted: #bbbbbb;
  --primary: #7c3aed;
  --primary2: #ac80f8;
}

[data-theme="light"] {
  --bg: #f5f5f7;
  --card: #ffffff;
  --soft: #e4e4e7;
  --text: #111;
  --muted: #4d4d4d;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Arial;
  background: var(--bg);
  color: var(--text);
  transition: 0.3s;
}

/* =========================
   CONTAINER
========================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px;
}

/* =========================
   HEADER MODERNO (GLASS)
========================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;

  /* fundo com degradê */
  background: linear-gradient(
    135deg,
    rgba(124,58,237,0.85),
    rgba(67,20,150,0.75),
    rgba(10,10,20,0.85)
  );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  /* borda roxa premium */
  border-bottom: 1px solid rgba(124,58,237,0.4);

  /* glow elegante */
  box-shadow:
    0 10px 40px rgba(0,0,0,0.35),
    0 0 25px rgba(124,58,237,0.25);

  transition: all 0.3s ease;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    #7c3aed,
    #a78bfa,
    #7c3aed,
    transparent
  );

  opacity: 0.7;
}

/* container interno */
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========================
   LOGO
========================= */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;

  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff;
}

/* LOGO */
.brand img {
  width: 38px;

  animation: spinLogo 28s linear infinite; /* bem mais lento */
  opacity: 0.9;

  transition: transform 0.5s ease;
}

/* animação contínua */
@keyframes spinLogo {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* micro interação */
.brand:hover img {
  transform: scale(1.05);
}

/* =========================
   NAV
========================= */
nav {
  display: flex;
  align-items: center;
}

nav a {
  position: relative;
  margin: 0 14px;

  color: var(--muted);
  text-decoration: none;

  font-size: 14px;
  font-weight: 500;

  transition: 0.25s;
  color: #fff;
}

/* hover elegante */
nav a:hover {
  color: var(--text);
}

/* underline animado (nível SaaS) */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background: linear-gradient(90deg, var(--primary), transparent);

  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* =========================
   BOTÕES
========================= */
.btn {
  background: var(--soft);
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--primary2);
}

.btn--primary {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(124,58,237,0.4);
}

.btn--primary:hover {
  box-shadow: 0 0 40px rgba(124,58,237,0.7);
}

/* =========================
   HERO PRO
========================= */

.hero {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
  margin-top: -45px;
}

/* fundo com imagem */
.hero-bg {
  position: absolute;
  inset: 0;

  background-image: url("https://images.unsplash.com/photo-1581090700227-1e8b7b6a8b7e?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center;

  filter: brightness(0.4);
  transform: scale(1.1);
}

/* overlay gradiente */
.hero-overlay {
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    rgba(124,58,237,0.25),
    rgba(0,0,0,0.9)
  );
}

/* conteúdo */
.hero-content {
  position: relative;
  z-index: 2;
}

/* badge */
.hero-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 12px;

  font-size: 12px;
  border-radius: 20px;

  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.4);
  color: #fff;
}

/* título */
.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* texto */
.hero p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 30px;
}

/* ações */
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* botão principal mais agressivo */
.btn-hero {
  font-size: 16px;
  padding: 16px 26px;

  box-shadow:
    0 0 30px rgba(124,58,237,0.5);
}

/* botão secundário */
.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
}

/* prova */
.hero-proof {
  margin-top: 20px;
  font-size: 13px;
  color: #fff;
}

/* =========================
   SECTION
========================= */
.section {
  padding: 80px 0px;
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 15px;
}

.section.alt {
  background: rgba(255,255,255,0.02);
}

.section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.section-lead {
  text-align: center;
  color: var(--text);
  margin-bottom: 40px;
}

/* =========================
   GRID + CARDS
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 20px;
}

.card {
  position: relative;
  padding: 24px;
  border-radius: 18px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(12px);

  transition: all 0.3s ease;

  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);

  border-color: var(--primary);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.25),
    0 0 25px rgba(124,58,237,0.15);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(124,58,237,0.2),
    transparent
  );

  opacity: 0;
  transition: 0.4s;
}

.card:hover::before {
  opacity: 1;
}


/* =========================
   DEMO BOX (NÍVEL SISTEMA REAL)
========================= */
.demo-box {
  position: relative;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );

  border-radius: 18px;
  padding: 7px;

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(14px);

  overflow: hidden;
}

/* glow sutil */
.demo-box::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top,
    rgba(124,58,237,0.15),
    transparent 60%
  );

  opacity: 0.4;
  pointer-events: none;
}

/* =========================
   STATS (MAIS PREMIUM)
========================= */
.demo-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
  justify-content: space-between;
  grid-auto-flow: column;
  justify-items: stretch;
}

.demo-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

p.demo-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.stat {
  position: relative;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.015)
  );

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;

  padding: 16px;

  backdrop-filter: blur(10px);

  transition: 0.3s ease;
  overflow: hidden;
}

/* brilho interno */
.stat::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(124,58,237,0.2),
    transparent
  );

  opacity: 0;
  transition: 0.4s;
}

.stat:hover::before {
  opacity: 1;
}

.stat:hover {
  transform: translateY(-4px);

  border-color: var(--primary);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.3),
    0 0 25px rgba(124,58,237,0.2);
}

.stat span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.stat strong {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* indicador vivo */
.stat strong::after {
  content: " ●";
  font-size: 11px;
  color: #22c55e;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

/* =========================
   MAPA (MAIS PROFISSIONAL)
========================= */
.map {
  height: 340px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.08);
}

/* fundo */
.map-bg {
  position: absolute;
  inset: 0;

  background-image: url("https://tile.openstreetmap.org/10/511/384.png");
  background-size: cover;
  background-position: center;

  filter: brightness(0.5) contrast(1.2);

  animation: mapMove 40s linear infinite;
}

@keyframes mapMove {
  0% { transform: scale(1.1) translate(0,0); }
  50% { transform: scale(1.1) translate(-15px,-8px); }
  100% { transform: scale(1.1) translate(0,0); }
}

/* overlay escuro */
.map::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.7)
  );
}

/* =========================
   VIGILANTES (MAIS VIVOS)
========================= */
.guard {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;

  z-index: 2;
  transition: 
  top 4s cubic-bezier(0.22, 1, 0.36, 1),
  left 4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* foto */
.guard img {
  width: 36px;
  height: 36px;
  border-radius: 50%;

  border: 2px solid var(--primary);

  box-shadow:
    0 0 12px rgba(124,58,237,0.7);
}

/* ponto base */
.guard::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;

  top: 30px;
  left: 12px;
}

/* pulse */
.guard::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;

  top: 30px;
  left: 12px;

  background: rgba(124,58,237,0.4);

  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  from { transform: scale(1); opacity: 0.6; }
  to { transform: scale(2.5); opacity: 0; }
}

/* =========================
   FEED (CARA DE SISTEMA)
========================= */
.log {
  max-height: 340px;
  overflow-y: auto;

  padding-right: 4px;
}

/* scrollbar bonita */
.log::-webkit-scrollbar {
  width: 6px;
}

.log::-webkit-scrollbar-thumb {
  background: rgba(124,58,237,0.4);
  border-radius: 10px;
}

.log-item {
  display: flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(
    180deg,
    rgba(168, 91, 255, 0.336),
    rgba(255,255,255,0.015)
  );

  border: 1px solid rgba(255,255,255,0.08);

  padding: 12px;
  border-radius: 10px;
  margin-bottom: 10px;

  opacity: 0;
  transform: translateY(10px);

  transition: 0.4s ease;
}

.log-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* indicador */
.log-icon {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.log-text {
  flex: 1;
  font-size: 13px;
  color: var(--text);
}

.log-time {
  font-size: 11px;
  color: var(--muted);
}



/* =========================
   NOTIFICAÇÃO
========================= */
.notify {
  position: fixed;
  top: 120px;
  right: 20px;
  background: var(--card);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--soft);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);

  transform: translateY(-20px);
  opacity: 0;

  transition: all .4s ease;
  z-index: 999;
}

/* 👇 ESTADO VISÍVEL */
.notify.show {
  opacity: 1;
  transform: translateY(0);
}

/* Tema claro e escuro */
.onboarding {
  position: fixed;
  bottom: 730px;
  left: 75%;

  background: rgba(255, 255, 255, 0.65); /* translúcido */
  color: #020617;
  backdrop-filter: blur(14px);       /* vidro fosco */
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 14px;
  padding: 14px;
  width: 280px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;

  z-index: 999;
}

.onboarding.show {
  opacity: 1;
  transform: translateY(0);
}

.onboarding-content {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.onboarding-icon {
  background: rgba(124,58,237,0.15);
  padding: 8px;
  border-radius: 10px;
  color: var(--primary);
}

.onboarding-text strong {
  display: block;
  font-size: 14px;
}

.onboarding-text span {
  font-size: 12px;
  color: #020617;
}

.onboarding-preview {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.preview {
  width: 40px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--soft);
}

.preview.dark {
  background: #0b0b0d;
}

.preview.light {
  background: #f5f5f7;
}

.onboarding-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  .topbar .container {
      flex-direction: row;
      gap: 10px;
      display: flex;
  }

  .onboarding {
  position: fixed;
  bottom: 620px;
  left: 20px;
  }

  .demo-cta {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-direction: column;
  align-items: stretch;
  }

  .section-lead {
  text-align: center;
  color: var(--text);
  margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero {
    padding: 70px 20px;
  }
}

/* =========================
   TOGGLE TEMA
========================= */
.theme-toggle {
  cursor: pointer;
  font-size: 18px;
}


.log-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.log-icon {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
}


/* header Botão Clara e escuro */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ações */
.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* botão ícone */
.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* SVG */
.btn svg {
  width: 20px;
  height: 20px;
  transition: 0.4s;
}

/* animação sol/lua */
.icon-sun {
  position: absolute;
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.icon-moon {
  opacity: 1;
}

/* quando muda tema */
[data-theme="light"] .icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

[data-theme="light"] .icon-moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

/* botão whatsapp */
.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;

  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
}

.btn-whatsapp svg {
  stroke: white;
}

.btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);

  box-shadow:
    0 10px 30px rgba(37,211,102,0.4);
}


/* =========================
   FOOTER (NÍVEL PRODUTO)
========================= */
.vrs-footer {
  position: relative;
  margin-top: 40px;
  padding: 40px 20px;
  border-top: 1px solid #7c3aed;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.25), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(10px);
}

/* container */
.vrs-footer__in {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-around;
  flex-wrap: wrap;
}

/* lado esquerdo */
.vrs-footer__left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vrs-footer__left strong {
  font-size: 16px;
}

/* copyright */
.vrs-footer__copy {
  font-size: 13px;
  color: var(--muted);
}

/* links */
.vrs-footer__links {
  display: flex;
  gap: 16px;
}

.vrs-footer__links a {
  position: relative;

  text-decoration: none;
  color: var(--muted);

  font-size: 14px;

  transition: 0.25s;
}

/* hover elegante */
.vrs-footer__links a:hover {
  color: var(--text);
}

/* underline animado */
.vrs-footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 0%;
  height: 1px;

  background: var(--primary);

  transition: 0.3s;
}

.vrs-footer__links a:hover::after {
  width: 100%;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .vrs-footer__in {
    flex-direction: column;
    text-align: center;
  }

  .vrs-footer__links {
    justify-content: center;
  }
}


/* =========================
   PROBLEMA (DOR / ALERTA)
========================= */
.problema h2 {
  font-size: 32px;
  line-height: 1.3;
  text-align: center;
}

.problema-grid {
  margin-top: 30px;
}

/* =========================
   BASE DO CARD
========================= */
.problema-card {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;

  min-height: 160px;

  border-radius: 18px;
  overflow: hidden;

  transition: 0.35s ease;
}

/* =========================
   BORDA VERMELHA (ALERTA)
========================= */
.problema-card::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 18px;
  padding: 1px;

  background: linear-gradient(
    120deg,
    #ef4444,
    #f87171,
    #ef4444
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0.25;
  transition: 0.4s;
}

/* =========================
   HOVER + ACTIVE (SCROLL)
========================= */
.problema-card:hover,
.problema-card.active {
  transform: translateY(-8px) scale(1.03);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.35),
    0 0 30px rgba(239,68,68,0.25);
}

.problema-card:hover::before,
.problema-card.active::before {
  opacity: 1;
}

/* =========================
   DESTAQUE (MAIS FORTE)
========================= */
.problema-card.destaque {
  border: 1px solid rgba(239,68,68,0.5);

  background: linear-gradient(
    180deg,
    rgba(239,68,68,0.10),
    rgba(239,68,68,0.03)
  );
}

/* =========================
   TEXTO
========================= */
.problema-card h3 {
  font-size: 18px;
}

.problema-card p {
  color: var(--muted);
  line-height: 1.5;
}

/* =========================
   TOQUE MOBILE
========================= */
.problema-card:active {
  transform: scale(0.97);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .problema h2 {
    font-size: 24px;
  }

  .problema-card {
    min-height: auto;
  }
}


/* =========================
   CTA FINAL (CONVERSÃO)
========================= */
.cta-final {
  text-align: center;
}

.cta-final h2 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta-sub {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 16px;
}

/* caixa do botão */
.cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* botão mais forte */
.btn-cta {
  font-size: 16px;
  padding: 16px 26px;

  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary2)
  );

  box-shadow:
    0 0 30px rgba(124,58,237,0.4);

  transition: 0.3s;
}

/* hover agressivo */
.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);

  box-shadow:
    0 0 50px rgba(124,58,237,0.7);
}

/* microcopy */
.cta-mini {
  font-size: 13px;
  color: var(--muted);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .cta-final h2 {
    font-size: 24px;
  }

  .btn-cta {
    width: 100%;
  }
}


/* =========================
   PROVA (NÍVEL PROFISSIONAL)
========================= */
.prova h2 {
  text-align: center;
  font-size: 32px;
  line-height: 1.3;
}

.proof-grid {
  margin-top: 40px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 20px;
}

/* =========================
   BASE DO CARD
========================= */
.proof-item {
  position: relative;

  display: flex;
  gap: 14px;
  align-items: flex-start;

  padding: 20px;
  border-radius: 16px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.015)
  );

  border: 1px solid rgba(255,255,255,0.08);

  overflow: hidden;

  transition: 0.35s ease;
}

/* =========================
   BORDA PREMIUM (IGUAL BENEFÍCIOS)
========================= */
.proof-item::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 16px;
  padding: 1px;

  background: linear-gradient(
    120deg,
    rgba(124,58,237,0.5),
    rgba(124,58,237,0.2)
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0.25;
  transition: 0.4s;
}

/* =========================
   HOVER + ACTIVE
========================= */
.proof-item:hover,
.proof-item.active {
  transform: translateY(-8px) scale(1.03);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.35),
    0 0 30px rgba(124,58,237,0.2);
}

.proof-item:hover::before,
.proof-item.active::before {
  opacity: 1;
}

/* =========================
   VARIAÇÕES DE COR
========================= */

/* 🔵 informação */
.proof-item.info::before {
  background: linear-gradient(
    120deg,
    #06b6d4,
    #38bdf8,
    #06b6d4
  );
}

/* 🟢 prova positiva */
.proof-item.success::before {
  background: linear-gradient(
    120deg,
    #22c55e,
    #4ade80,
    #22c55e
  );
}

/* 🔴 risco / erro */
.proof-item.danger::before {
  background: linear-gradient(
    120deg,
    #ef4444,
    #f87171,
    #ef4444
  );
}

/* destaque */
.proof-item.destaque {
  border: 1px solid rgba(239,68,68,0.4);
}

/* =========================
   ÍCONES
========================= */
.proof-icon {
  min-width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(124,58,237,0.15);
  color: var(--primary);

  transition: 0.3s;
}

.proof-item.info .proof-icon {
  background: rgba(6,182,212,0.15);
  color: #06b6d4;
}

.proof-item.success .proof-icon {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
}

.proof-item.danger .proof-icon {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
}

.proof-icon svg {
  width: 20px;
  height: 20px;
}

/* =========================
   TEXTO
========================= */
.proof-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.proof-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* =========================
   MOBILE TOUCH
========================= */
.proof-item:active {
  transform: scale(0.97);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .prova h2 {
    font-size: 24px;
  }
}


/* =========================
   DEMO LAYOUT
========================= */
.demo-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

/* responsivo */
@media (max-width: 900px) {
  .demo-main {
    grid-template-columns: 1fr;
  }
}

/* =========================
   MAPA REALISTA
========================= */
.map {
  height: 350px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.08);
}

/* fundo estilo mapa */
.map-bg {
  position: absolute;
  inset: 0;

  background-image: url("https://tile.openstreetmap.org/10/511/384.png");
  background-size: cover;
  background-position: center;

  filter: brightness(0.5) contrast(1.2);

  animation: mapMove 40s linear infinite;
}

/* leve movimento (efeito vivo) */
@keyframes mapMove {
  0% { transform: scale(1.1) translate(0,0); }
  50% { transform: scale(1.1) translate(-20px,-10px); }
  100% { transform: scale(1.1) translate(0,0); }
}

/* overlay escuro elegante */
.map::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.7)
  );
}

/* =========================
   VIGILANTES MAIS PROFISSIONAIS
========================= */
.guard {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;

  z-index: 2;
}

/* nome melhor */
.guard .name {
  background: var(--bg);
  backdrop-filter: blur(6px);

  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
}

/* =========================
   FEED MELHOR
========================= */
.log {
  max-height: 350px;
  overflow-y: auto;

  padding-right: 4px;
}


/* =========================
   BASE
========================= */
.beneficio-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;

  transition: 0.35s ease;
}

/* =========================
   BORDA BASE (NEUTRA)
========================= */
.beneficio-card::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 18px;
  padding: 1px;

  background: linear-gradient(
    120deg,
    rgba(124,58,237,0.6),
    rgba(124,58,237,0.2)
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0.3;
  transition: 0.4s;
}

/* =========================
   HOVER / ACTIVE
========================= */
.beneficio-card:hover,
.beneficio-card.active {
  transform: translateY(-8px) scale(1.03);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.35),
    0 0 30px rgba(124,58,237,0.25);
}

.beneficio-card:hover::before,
.beneficio-card.active::before {
  opacity: 1;
}

/* =========================
   VARIAÇÕES DE COR
========================= */

/* 🟢 solução */
.beneficio-card.success::before {
  background: linear-gradient(
    120deg,
    #22c55e,
    #4ade80,
    #22c55e
  );
}

/* 🔴 problema */
.beneficio-card.danger::before {
  background: linear-gradient(
    120deg,
    #ef4444,
    #f87171,
    #ef4444
  );
}

/* 🔵 informação */
.beneficio-card.info::before {
  background: linear-gradient(
    120deg,
    #06b6d4,
    #38bdf8,
    #06b6d4
  );
}

/* =========================
   TOQUE MOBILE
========================= */
.beneficio-card:active {
  transform: scale(0.97);
}

/* =========================
   TEXTO
========================= */
.beneficio-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.beneficio-card p {
  color: var(--muted);
  line-height: 1.5;
}



/* =========================
   SEO SECTION (AUTORIDADE)
========================= */

.seo-section {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* título */
.seo-section h2 {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 20px;

  text-align: center;
}

/* subtítulo */
.seo-section h3 {
  margin-top: 30px;
  margin-bottom: 14px;

  font-size: 20px;
}

/* parágrafos */
.seo-section p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;

  font-size: 15px;
}

/* destaque leve no primeiro parágrafo */
.seo-section p:first-of-type {
  color: var(--text);
}

/* lista */
.seo-section ul {
  margin-top: 10px;
  padding-left: 0;

  display: grid;
  gap: 10px;
}

/* itens da lista */
.seo-section li {
  list-style: none;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;

  padding: 12px 14px;

  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;

  transition: 0.25s;
}

/* ícone (bolinha verde) */
.seo-section li::before {
  content: "";
  width: 8px;
  height: 8px;

  background: #22c55e;
  border-radius: 50%;

  box-shadow: 0 0 8px rgba(34,197,94,0.6);
}

/* hover leve */
.seo-section li:hover {
  transform: translateX(4px);

  border-color: var(--primary);

  box-shadow:
    0 6px 20px rgba(0,0,0,0.2),
    0 0 15px rgba(124,58,237,0.15);
}

/* caixa geral (efeito premium leve) */
.seo-section {
  padding: 30px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.2), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(155, 0, 245, 0.733);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}


.autoridade h2 {
  text-align: center;
  margin-bottom: 20px;
}

.autoridade .section-lead {
  text-align: center;
  margin-bottom: 40px;
  color: var(--muted);
}