/* ════════════════════════════════════════════════════
   LANNESSECURITY — Site Institucional
   Design system v1.0 · 2025
   Edite os tokens em :root para alterar a identidade global
   ════════════════════════════════════════════════════ */

:root {
  /* Fonts */
  --font-title: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'DM Mono', monospace;

  /* Brand */
  --g: #10b981;
  --g-dark: #059669;
  --g-dim: #064e3b;
  --g-bright: #34d399;
  --g-pale: #ecfdf5;

  /* Surfaces */
  --ink: #06090e;
  --ink2: #0b0f19;
  --ink3: #111827;

  /* Lines / dividers */
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.12);

  /* Text */
  --text: #f8fafc;
  --text-dim: #94a3b8;
  --text-mute: #64748b;
  --muted: #475569;

  /* Layout */
  --max-w: 1200px;
  --pad-x: 48px;
  --section-pad: clamp(64px, 6.2vw, 88px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--g);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

/* ── NOISE TEXTURE ──────────────────────────── */
.app::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.55;
  mix-blend-mode: overlay;
}

/* ── GRID BACKGROUND ────────────────────────── */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 185, 129, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 80%);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 80%);
}

/* ── LAYOUT ─────────────────────────────────── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  padding: var(--section-pad) 0;
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(9, 13, 22, 0.82);
  border-bottom: 1px solid var(--line);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  transition: border-color 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--line-strong);
}

.nav-brand {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.14em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand svg,
.nav-brand .nav-brand-img {
  flex-shrink: 0;
}
.nav-brand .nav-brand-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
.nav-tag {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--g);
  text-transform: uppercase;
  font-weight: 500;
  padding: 3px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
}

/* ─── Wordmark da marca (navbar) ─── */
.nav-brand-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--text);
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
}
.nav-brand-accent {
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-left: 0.32em;
  background: linear-gradient(120deg, var(--g-bright), var(--g) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--g);
  transition: filter 0.25s ease;
}
.nav-brand:hover .nav-brand-accent {
  filter: brightness(1.25) drop-shadow(0 0 10px rgba(16, 185, 129, 0.45));
}

.nav-links {
  display: flex;
  flex: 1;
  margin-left: 56px;
  gap: 36px;
  list-style: none;
  align-items: center;
}
/* empurra o seletor de produto + CTA para a direita (layout de 3 zonas) */
.nav-switch {
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.25s ease;
  font-family: var(--font-title);
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-cta {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--g) !important;
  transition: all 0.25s ease;
  background: rgba(16, 185, 129, 0.04);
  cursor: pointer;
  letter-spacing: -0.01em;
}
.nav-cta:hover {
  background: var(--g);
  color: #06090e !important;
  border-color: var(--g);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}
.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

/* ─── Grupos da navbar: âncoras da página + seletor de produto ─── */
.nav-anchors {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Seletor segmentado das duas linhas de produto (Sentinela · Pentesting B2B) */
.nav-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.04);
}
.nav-links .nav-switch-item {
  padding: 7px 16px;
  border-radius: 999px;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.nav-links .nav-switch-item:hover {
  color: var(--g);
}
.nav-links .nav-switch-item.active {
  color: var(--ink);
  background: linear-gradient(120deg, var(--g-bright), var(--g) 75%);
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.3);
}
/* anula o sublinhado padrão de .active dentro do seletor */
.nav-links .nav-switch-item.active::after {
  display: none;
}

/* ─── Menu "Soluções" (dropdown com as 2 famílias de produto) ─── */
.nav-solutions {
  position: relative;
  margin-left: auto;
}
.nav-solutions-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-dim);
  cursor: pointer;
  padding: 8px 2px;
  transition: color 0.25s ease;
}
.nav-solutions-trigger:hover {
  color: var(--text);
}
.nav-solutions.is-open .nav-solutions-trigger {
  color: var(--text);
}
.nav-solutions-caret {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.nav-solutions.is-open .nav-solutions-caret {
  transform: rotate(180deg);
}
.nav-solutions-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 500px;
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 40px 70px -24px rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 80;
}
.nav-solutions.is-open .nav-solutions-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-solutions-group-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 2px 8px 10px;
}
.nav-solutions-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.nav-solutions-divider {
  height: 1px;
  background: var(--line);
  margin: 12px 8px;
}
.nav-solutions-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.nav-solutions-item--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.nav-solutions-item:hover,
.nav-solutions-item.active {
  background: rgba(16, 185, 129, 0.07);
}
.nav-solutions-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.09);
  color: var(--g);
}
.nav-solutions-item.active .nav-solutions-icon {
  background: var(--g);
  color: #06090e;
}
.nav-solutions-item-title {
  display: block;
  font-family: var(--font-title);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.nav-solutions-item--stacked .nav-solutions-item-title {
  margin-bottom: 0;
}
.nav-solutions-item-desc {
  display: block;
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--text-dim);
}
.nav-solutions-item--stacked .nav-solutions-item-desc {
  font-size: 10.5px;
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
}
.btn-primary {
  background: var(--g);
  color: #06090e;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
  background: var(--g-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover {
  border-color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transform: translateY(-1px);
}
.btn-arrow {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.2s;
}
.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 64px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.hero-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--g);
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--g);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--g);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-title em {
  color: var(--g);
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
.hero-sub {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-sub strong {
  color: var(--g-bright);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta-num {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 700;
  color: var(--g);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-meta-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 400;
}

/* Hero right — Shield */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 24px;
}
.shield-rings {
  position: absolute;
  top: 280px; /* Centered precisely on the phone mockup */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
  pointer-events: none;
  z-index: 0;
}
.ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  animation: ringPulse 4s ease-in-out infinite;
}
.ring:nth-child(2) {
  inset: 40px;
  animation-delay: 1s;
  border-color: rgba(16, 185, 129, 0.08);
}
.ring:nth-child(3) {
  inset: 80px;
  animation-delay: 2s;
  border-color: rgba(16, 185, 129, 0.05);
}
@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.03);
  }
}
.shield-hero {
  width: 340px;
  height: 365px;
  object-fit: contain;
  filter: drop-shadow(0 0 80px rgba(16, 185, 129, 0.3));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
.hero-badge {
  position: absolute;
  bottom: 40px;
  right: -25px;
  padding: 10px 16px;
  background: rgba(9, 13, 22, 0.85);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--g);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ────────────────────────────────────────────────
   SEAL — selo de verificação (hero Sentinela Corporativo)
   Emblema de certificação, distinto do celular da home
   ──────────────────────────────────────────────── */
.seal-graphic {
  position: relative;
  width: 300px;
  height: 300px;
  z-index: 1;
}
.seal-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}
.seal-ring--inner {
  inset: 18px;
  border-color: rgba(16, 185, 129, 0.2);
}
.seal-core {
  position: absolute;
  inset: 56px;
  border-radius: 50%;
  background: var(--ink2);
  border: 1px solid var(--g);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--g);
  box-shadow: 0 0 50px rgba(16, 185, 129, 0.2);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}
.seal-core-title {
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--text);
  text-transform: uppercase;
}
.seal-core-sub {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.seal-leader {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  white-space: nowrap;
  z-index: 1;
}
.seal-leader-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 6px var(--g);
  flex-shrink: 0;
}
.seal-leader-line {
  background: var(--line-strong);
}
.seal-leader--1 {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  gap: 6px;
}
.seal-leader--1 .seal-leader-line {
  width: 1px;
  height: 16px;
}
.seal-leader--2 {
  bottom: 30px;
  right: -78px;
}
.seal-leader--2 .seal-leader-line {
  width: 20px;
  height: 1px;
}
.seal-leader--3 {
  bottom: 30px;
  left: -78px;
  flex-direction: row-reverse;
}
.seal-leader--3 .seal-leader-line {
  width: 20px;
  height: 1px;
}

/* ────────────────────────────────────────────────
   DECREE — documento oficial + carimbo (hero Sentinela Gov)
   Linguagem de ofício/selo municipal, distinta do selo corporativo
   ──────────────────────────────────────────────── */
.decree-graphic {
  position: relative;
  width: 340px;
  z-index: 1;
}
.decree-card {
  position: relative;
  overflow: hidden;
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 28px 34px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  animation: float 7s ease-in-out infinite;
}
.decree-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(90deg, var(--g), transparent 75%);
}
.decree-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.decree-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g);
  flex-shrink: 0;
}
.decree-header-title {
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--text);
  font-weight: 600;
}
.decree-header-sub {
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 3px;
}
.decree-line {
  height: 7px;
  border-radius: 3px;
  background: var(--line-strong);
  opacity: 0.5;
  margin-bottom: 10px;
}
.decree-line--100 {
  width: 100%;
}
.decree-line--70 {
  width: 70%;
  margin-bottom: 0;
}
.decree-footer {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g);
}
.decree-footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 8px var(--g);
  animation: blink 1.6s ease-in-out infinite;
}

/* ────────────────────────────────────────────────
   DD PILLARS — Diagnóstico / Mensuração / Plano de Ação
   Processo vertical em 3 etapas (hero Cyber Due Diligence)
   ──────────────────────────────────────────────── */
.dd-pillars {
  position: relative;
  width: 380px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.dd-pillar {
  display: flex;
  gap: 18px;
  position: relative;
  padding-bottom: 34px;
}
.dd-pillar:last-child {
  padding-bottom: 0;
}
.dd-pillar::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: var(--line-strong);
}
.dd-pillar:last-child::before {
  display: none;
}
.dd-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink2);
  border: 1px solid var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.15);
}
.dd-pillar-num {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--g);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.dd-pillar-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.dd-pillar-desc {
  font-size: 11.5px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 290px;
}

/* DD — Stepper (Modalidades), Checklist (O que analisamos),
   Timeline (Fases), Deliverables (Entregáveis) */
.dd-stepper {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.dd-step {
  flex: 1;
  min-width: 240px;
  position: relative;
  padding: 0 20px;
}
.dd-step:first-child {
  padding-left: 0;
}
.dd-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 20px);
  right: calc(-50% + 20px);
  height: 1px;
  background: var(--line-strong);
}
.dd-step-marker {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink2);
  border: 1px solid var(--g);
  color: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.dd-step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.dd-step-tag {
  font-size: 10.5px;
  color: var(--g-bright);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.dd-step-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}

.dd-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 44px;
  margin-top: 40px;
}
.dd-checklist-item {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.dd-checklist-num {
  font-size: 12px;
  color: var(--g);
  flex-shrink: 0;
  padding-top: 2px;
  letter-spacing: 0.04em;
}
.dd-checklist-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.dd-checklist-desc {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.7;
}

.dd-timeline {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  max-width: 720px;
}
.dd-timeline-item {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 36px;
}
.dd-timeline-item:last-child {
  padding-bottom: 0;
}
.dd-timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 0;
  width: 1px;
  background: var(--line-strong);
}
.dd-timeline-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink2);
  border: 1px solid var(--g);
  color: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
}
.dd-timeline-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.dd-timeline-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}

.dd-deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
}
.dd-deliverable {
  padding: 0 28px;
  border-left: 1px solid var(--line);
}
.dd-deliverable:first-child {
  border-left: none;
  padding-left: 0;
}
.dd-deliverable-num {
  font-size: 11px;
  color: var(--g);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.dd-deliverable-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.dd-deliverable-desc {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .dd-checklist {
    grid-template-columns: 1fr;
  }
  .dd-deliverables {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dd-deliverable {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }
  .dd-deliverable:first-child {
    border-top: none;
    padding-top: 0;
  }
  .dd-stepper {
    flex-direction: column;
    gap: 32px;
  }
  .dd-step {
    padding: 0;
  }
  .dd-step:not(:last-child)::after {
    display: none;
  }
}



.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--g), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════ */
.section-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 64px;
}
.section-num {
  font-size: 11px;
  color: var(--g);
  letter-spacing: 0.22em;
  font-weight: 500;
  font-family: var(--font-body);
}
.section-kicker {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--g);
}
.section-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--text);
  max-width: 780px;
}
.section-title em {
  color: var(--g);
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}
.section-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ═══════════════════════════════════════════════
   FILOSOFIA — "O Escudo"
   ═══════════════════════════════════════════════ */
#filosofia {
  padding: 80px 0 100px;
}
.filosofia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.filosofia-quote {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--g);
}
.filosofia-attrib {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  padding-left: 20px;
  font-style: normal;
}

.filosofia-right p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 20px;
}
.filosofia-right p strong {
  color: var(--text);
  font-weight: 400;
}
.filosofia-right p em {
  color: var(--g-bright);
  font-style: normal;
}

/* ═══════════════════════════════════════════════
   SERVIÇOS
   ═══════════════════════════════════════════════ */
#servicos {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(13, 22, 16, 0.4) 30%,
    rgba(13, 22, 16, 0.4) 70%,
    transparent
  );
}

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

/* ─── Agrupamento "Prevenção" / "Resposta & Vigilância" ─── */
.recursos-group-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.recursos-group-label--second {
  margin-top: 48px;
}
.recursos-group-label span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--g);
  white-space: nowrap;
}
.recursos-group-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
@media (max-width: 768px) {
  .recursos-group-label--second {
    margin-top: 32px;
  }
}
.service-card {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 18px 40px -28px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.3s,
    box-shadow 0.4s;
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--g), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='25.4'%3E%3Cpath d='M11,2.5 L19.5,7.7 L19.5,18.1 L11,23.3 L2.5,18.1 L2.5,7.7 Z' fill='none' stroke='%231db88a' stroke-width='0.6'/%3E%3C/svg%3E");
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 28px 50px -26px rgba(0, 0, 0, 0.9);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover::after {
  opacity: 0.05;
}

.service-num {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--g);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 40px;
}
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--g);
  position: relative;
  z-index: 1;
}
.service-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.service-desc {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.service-features {
  list-style: none;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.service-features li {
  font-size: 11.5px;
  color: var(--text-dim);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  letter-spacing: 0.01em;
}
.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--g);
}

/* ═══════════════════════════════════════════════
   PILARES
   ═══════════════════════════════════════════════ */
.pilares-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 20px;
  margin-bottom: 24px;
}
.pilares-grid--three {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}

/* ─── Trilha de crescimento (Planos): plano do meio elevado ─── */
.planos-trilha {
  position: relative;
  align-items: end;
  margin-top: 40px;
}
.planos-trilha-line {
  position: absolute;
  top: 50%;
  left: 6%;
  right: 6%;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 14px);
  z-index: 0;
}
.planos-trilha-elevated {
  transform: translateY(-28px);
  box-shadow: 0 40px 70px -30px rgba(16, 185, 129, 0.35);
}
.planos-trilha .pilar-card {
  position: relative;
  z-index: 1;
}
.planos-trilha-elevated {
  z-index: 2;
}
.pilares-grid--three .pilar-card.planos-trilha-elevated:hover {
  transform: translateY(-36px);
  box-shadow: 0 44px 76px -28px rgba(16, 185, 129, 0.45);
}
@media (max-width: 1024px) {
  .planos-trilha-line {
    display: none;
  }
  .planos-trilha-elevated,
  .pilares-grid--three .pilar-card.planos-trilha-elevated:hover {
    transform: none;
  }
}
.pilares-grid--two {
  grid-template-columns: repeat(2, 1fr);
}
.pilares-grid--three .pilar-card::before {
  height: 3px;
  background: linear-gradient(90deg, transparent 10%, var(--g) 50%, transparent 90%);
  opacity: 0.85;
}
.pilares-grid--three .pilar-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pilares-grid--three .pilar-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.pilares-grid--three .pilar-label::after {
  display: none;
}
.pilares-grid--three .pilar-title {
  font-size: clamp(24px, 2vw, 30px);
  margin-bottom: 18px;
  line-height: 1.1;
}
.pilares-grid--three .pilar-desc {
  font-size: 13.5px;
  line-height: 1.85;
  max-width: 100%;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px dashed rgba(16, 185, 129, 0.18);
}
.pilares-grid--three .pilar-items {
  gap: 18px;
  margin-bottom: 0;
}
.pilares-grid--three .pilar-item {
  padding: 18px 18px 20px;
  background: transparent;
  border: 1px solid rgba(16, 185, 129, 0.14);
  border-radius: 14px;
  gap: 14px;
}
.pilares-grid--three .pilar-item:hover {
  border-color: var(--g);
  background: rgba(16, 185, 129, 0.04);
  transform: none;
}
.pilares-grid--three .pilar-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}
.pilares-grid--three .pilar-item-title {
  font-size: 15px;
  margin-bottom: 8px;
}
.pilares-grid--three .pilar-item-desc {
  font-size: 12.5px;
  line-height: 1.75;
}
.pilar-card {
  position: relative;
  padding: 44px 40px 36px;
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 22px 48px -30px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pilar-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 30px 56px -28px rgba(0, 0, 0, 0.9);
}
.pilar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--g), transparent);
}
.pilar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='25.4'%3E%3Cpath d='M11,2.5 L19.5,7.7 L19.5,18.1 L11,23.3 L2.5,18.1 L2.5,7.7 Z' fill='none' stroke='%231db88a' stroke-width='0.6'/%3E%3C/svg%3E");
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.pilar-card:hover {
  border-color: var(--line-strong);
}
.pilar-card:hover::after {
  opacity: 0.04;
}

.pilar-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--g);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pilar-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 40px;
}
.pilar-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 1;
}
.pilar-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 440px;
  position: relative;
  z-index: 1;
}
.pilar-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.pilar-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: rgba(9, 13, 22, 0.45);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}
.pilar-item:hover {
  border-color: var(--line-strong);
  background: rgba(9, 13, 22, 0.7);
  transform: translateX(3px);
}
.pilar-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--g);
}
.pilar-item-content {
  flex: 1;
  min-width: 0;
}
.pilar-item-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.pilar-item-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
}
.pilar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.pilar-tag {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g);
  padding: 5px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.04);
  font-weight: 500;
}

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

/* ═══════════════════════════════════════════════
   DIFERENCIAIS
   ═══════════════════════════════════════════════ */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.dif-card {
  padding: 40px 32px;
  background: var(--ink);
  transition: background 0.3s;
  position: relative;
}
.dif-card:hover {
  background: var(--ink2);
}
.dif-card:hover .dif-num {
  color: var(--g-bright);
}

.dif-num {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 700;
  color: var(--g);
  line-height: 1;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  transition: color 0.3s;
}
.dif-num-unit {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 500;
}
.dif-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dif-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   SOBRE
   ═══════════════════════════════════════════════ */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.sobre-text p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 20px;
}
.sobre-text p strong {
  color: var(--text);
  font-weight: 400;
}
.sobre-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pillar {
  padding: 28px 24px;
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.pillar:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.pillar-icon {
  color: var(--g);
  margin-bottom: 16px;
}
.pillar-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.pillar-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   CONTATO
   ═══════════════════════════════════════════════ */
#contato {
  background: linear-gradient(180deg, transparent, rgba(10, 61, 43, 0.18) 50%, transparent);
}
.contato-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.contato-header .contato-kicker {
  display: inline-flex;
}
.contato-kicker {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 24px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.contato-kicker::before,
.contato-kicker::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--g);
}
.contato-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}
.contato-title em {
  color: var(--g);
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}
.contato-sub {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.85;
  margin: 0 auto;
  max-width: 100%;
}
.contato-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}
.contato-method {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
}
.contato-method:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  background: rgba(16, 185, 129, 0.04);
}
.contato-method-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--g);
  flex-shrink: 0;
}
.contato-method-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
  font-weight: 500;
}
.contato-method-value {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
  word-break: break-all;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  position: relative;
  z-index: 1;
  background: rgba(9, 13, 22, 0.6);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-brand-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.footer-brand-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 28px;
  color: var(--text);
  letter-spacing: 0.08em;
  line-height: 1;
}
.footer-brand-sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--g);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}
.footer-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12.5px;
  color: var(--text-mute);
  line-height: 1.65;
  max-width: 300px;
  margin-top: 16px;
  letter-spacing: 0.02em;
}
.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  padding: 5px 0;
}
.footer-links a {
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.footer-links a:hover {
  color: var(--g);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--g);
}
.footer-status::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--g);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════
   FADE-IN
   ═══════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.9s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pilares-grid {
    grid-template-columns: 1fr;
  }
  .pilares-grid--three {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pilares-grid--two {
    grid-template-columns: repeat(2, 1fr);
  }
  .pilares-grid--three .pilar-card {
    padding: 40px 28px 36px;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --pad-x: 24px;
    --section-pad: 80px;
  }
  .nav {
    padding: 0 24px;
    height: 60px;
  }
  .nav-links {
    display: none;
  }
  .nav-menu-btn {
    display: block;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    margin-left: 0;
    background: rgba(9, 13, 22, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(24px);
  }
  .nav-links.open .nav-cta {
    margin-top: 8px;
    text-align: center;
  }
  .nav-links.open .nav-anchors {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }
  .nav-links.open .nav-switch {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }
  .nav-links.open .nav-switch-item {
    flex: 1;
    text-align: center;
    padding: 11px 16px;
  }
  .nav-links.open .nav-solutions {
    width: 100%;
    margin-left: 0;
  }
  .nav-links.open .nav-solutions-trigger {
    display: none;
  }
  .nav-links.open .nav-solutions-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    gap: 20px;
  }
  .nav-links.open .nav-solutions-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .nav-links.open .nav-solutions-item--stacked {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
  .nav-links.open .nav-solutions-item--stacked .nav-solutions-item-title {
    margin-bottom: 3px;
  }
  .nav-links.open .nav-solutions-divider {
    margin: 0 4px;
  }
  .nav-links.open .nav-solutions-item {
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--line);
  }
  /* links do menu mobile: maiores e com mais área de toque */
  .nav-links.open .nav-anchors a {
    font-size: 14px;
    letter-spacing: 0.1em;
    padding: 6px 2px;
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  /* No mobile a headline vem primeiro: o mockup do celular é alto e deixava
     a primeira dobra inteira sem mensagem nenhuma. */
  .hero-right {
    order: 0;
  }
  .hero-badge {
    bottom: -15px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .shield-hero {
    width: 240px;
    height: 258px;
  }
  .shield-rings {
    inset: -20px;
  }
  .ring:nth-child(2) {
    inset: 30px;
  }
  .ring:nth-child(3) {
    inset: 60px;
  }
  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
  }
  .hero-meta-num {
    font-size: 24px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 40px;
  }
  .section-line {
    display: none;
  }
  .filosofia-grid,
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .servicos-grid {
    grid-template-columns: 1fr;
  }
  .pilares-grid--two {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pilar-card {
    padding: 32px 24px 28px;
  }
  .diferenciais-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contato-methods {
    grid-template-columns: 1fr;
  }
  .sobre-pillars {
    grid-template-columns: 1fr;
  }

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

  .hero-scroll {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .contato-form {
    padding: 20px;
  }
  .faq-item summary {
    padding: 16px 20px;
    font-size: 16px;
  }
  .faq-answer {
    padding: 0 20px 20px;
  }
  .faq-list {
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .diferenciais-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    flex: 1;
    justify-content: center;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-sub {
    font-size: 13.5px;
  }
  .hero-meta-num {
    font-size: 22px;
  }
}


/* ════════════════════════════════════════════════════
   ADIÇÕES — Landing page profissional
   ════════════════════════════════════════════════════ */

/* ─── Impede scroll do body com menu mobile aberto ─── */
body.no-scroll {
  overflow: hidden;
}

/* ─── Link ativo na navbar ─── */
.nav-links a.active {
  color: var(--g);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--g);
  opacity: 0.7;
}
.nav-links a {
  position: relative;
}

/* ─── Layout de grid da seção Contato (duas colunas) ─── */
.contato-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 1.6fr);
  gap: 56px;
  margin-top: 56px;
  text-align: left;
  align-items: start;
}

@media (max-width: 860px) {
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contato-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contato-extra {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.03);
}

.contato-extra-value {
  font-family: var(--font-title);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.03em;
  margin-top: 4px;
  font-size: 1rem;
}

.contato-extra-hint {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 0.86rem;
}

.contato-extra-hint strong {
  color: var(--g-bright);
  font-weight: 500;
}

/* ─── Formulário ─── */
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.04), rgba(16, 185, 129, 0));
  backdrop-filter: blur(6px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contato-form {
    padding: 24px;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-label .req {
  color: var(--g);
  margin-left: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(9, 13, 22, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-mute);
  font-weight: 300;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--g);
  background: rgba(9, 13, 22, 0.9);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.14);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231db88a'%3E%3Cpath d='M5 8l5 5 5-5H5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ─── Cloudflare Turnstile Anti-Spam Widget ─── */
.turnstile-wrapper {
  margin-top: 12px;
  margin-bottom: 12px;
  min-height: 65px;
  display: flex;
  justify-content: flex-start;
}

/* ─── Google reCAPTCHA v2 Classic Card (Dark / Cyber Edition) ─── */
.g-recaptcha-card {
  width: 304px;
  max-width: 100%;
  height: 76px;
  min-height: 76px;
  max-height: 76px;
  background: rgba(13, 19, 28, 0.95);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  margin-top: 8px;
  box-sizing: border-box;
  user-select: none;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.g-recaptcha-card:hover {
  border-color: rgba(29, 184, 138, 0.4);
}

.g-recaptcha-card.has-error {
  border-color: #ff7a7a;
  box-shadow: 0 0 0 3px rgba(255, 122, 122, 0.2);
}

.g-recaptcha-content {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.g-recaptcha-content input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.g-recaptcha-checkbox {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid var(--text-mute);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-sizing: border-box;
}

.g-recaptcha-content:hover .g-recaptcha-checkbox {
  border-color: var(--g);
}

.g-recaptcha-content input[type="checkbox"]:checked + .g-recaptcha-checkbox {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--g);
  box-shadow: 0 0 10px rgba(29, 184, 138, 0.3);
}

svg.g-recaptcha-checkmark {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  display: block;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.g-recaptcha-content input[type="checkbox"]:checked + .g-recaptcha-checkbox svg.g-recaptcha-checkmark {
  opacity: 1;
  transform: scale(1);
}

.g-recaptcha-text {
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
}

/* Badge do lado direito (Empilhado na Vertical) */
.g-recaptcha-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding-left: 8px;
  flex-shrink: 0;
}

svg.g-recaptcha-logo {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  max-width: 30px;
  max-height: 30px;
  display: block;
  flex-shrink: 0;
}

.g-recaptcha-title {
  font-family: Roboto, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.2px;
  line-height: 1;
}

.g-recaptcha-links {
  font-family: Roboto, Arial, sans-serif;
  font-size: 8px;
  color: var(--text-mute);
  white-space: nowrap;
  line-height: 1;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.form-legal {
  font-size: 0.74rem;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}

.form-status {
  min-height: 22px;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  font-family: var(--font-body);
}
.form-status[data-type="info"]    { color: var(--text-dim); }
.form-status[data-type="success"] { color: var(--g-bright); }
.form-status[data-type="error"]   { color: #ff7a7a; }

/* Botão em estado "carregando" */
.btn.is-loading {
  opacity: 0.75;
  cursor: progress;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ─── Botão flutuante de WhatsApp ─── */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(37, 211, 102, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  z-index: -1;
  animation: wa-pulse 2.2s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  80%  { transform: scale(1.6); opacity: 0;   }
  100% { transform: scale(1.6); opacity: 0;   }
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55), 0 0 0 4px rgba(37, 211, 102, 0.2);
}

@media (max-width: 560px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float::after { display: none; }
  .fade-in { transition: none; filter: none; transform: none; }
}

/* ════════════════════════════════════════════════════
   FILOSOFIA STATS BAR
   ════════════════════════════════════════════════════ */
.filosofia-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 64px;
}
.filosofia-stat {
  padding: 32px 28px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.3s;
}
.filosofia-stat:hover {
  background: var(--ink2);
}
.filosofia-stat-icon {
  color: var(--g);
  margin-bottom: 16px;
  opacity: 0.7;
}
.filosofia-stat-num {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1;
  color: var(--g);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.filosofia-stat-label {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

/* ════════════════════════════════════════════════════
   PILAR CARD FLEX + FOOTER
   ════════════════════════════════════════════════════ */
.pilar-card--flex {
  display: flex;
  flex-direction: column;
}
.pilar-card--flex .pilar-items {
  flex: 1;
}
.pilar-card--highlight {
  background:
    linear-gradient(180deg, rgba(16, 185, 129, 0.06) 0%, transparent 30%),
    var(--ink2);
  border-color: var(--line-strong);
}
.pilar-card--highlight::before {
  height: 3px;
  opacity: 1;
}
.pilar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 28px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 12px;
}
.pilar-price {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.pilar-price strong {
  color: var(--g);
  font-weight: 500;
}
.pilar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g);
  text-decoration: none;
  font-weight: 500;
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  transition: all 0.2s;
}
.pilar-cta:hover {
  border-color: var(--g);
  background: rgba(16, 185, 129, 0.06);
}
.pilar-cta--primary {
  background: var(--g);
  color: var(--ink);
  border-color: var(--g);
}
.pilar-cta--primary:hover {
  background: var(--g-bright);
  border-color: var(--g-bright);
  color: var(--ink);
}

/* ════════════════════════════════════════════════════
   VANTAGENS POR SERVIÇO (sv-*)
   ════════════════════════════════════════════════════ */
.dif-intro {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.85;
  max-width: 640px;
  margin-bottom: 40px;
}
.sv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sv-card {
  padding: 40px 36px;
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.sv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--g), transparent);
  opacity: 0.6;
}
.sv-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.sv-card--accent {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.06) 0%, var(--ink2) 35%);
  border-color: var(--line-strong);
}
.sv-card--accent::before {
  opacity: 1;
  height: 3px;
}
.sv-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.sv-num {
  font-family: var(--font-title);
  font-size: 52px;
  font-weight: 700;
  color: var(--g);
  line-height: 1;
  opacity: 0.25;
  flex-shrink: 0;
}
.sv-service-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 5px;
  font-weight: 500;
}
.sv-service-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 30px;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1;
}
.sv-tagline {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(16, 185, 129, 0.18);
}
.sv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
  flex: 1;
}
.sv-list li {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.sv-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--g);
}
.sv-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.25s;
  align-self: flex-start;
}
.sv-cta:hover {
  border-color: var(--g);
  color: var(--g);
}
.sv-cta--accent {
  background: var(--g);
  color: var(--ink);
  border-color: var(--g);
}
.sv-cta--accent:hover {
  background: var(--g-bright);
  border-color: var(--g-bright);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.28);
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — novos componentes
   ════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .filosofia-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .sv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .filosofia-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
  .sv-card {
    padding: 32px 24px;
  }
  .pilar-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .pilar-cta,
  .pilar-cta--primary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .filosofia-stats {
    grid-template-columns: 1fr;
  }
}


/* ════════════════════════════════════════════════════
   ✦ PREMIUM LAYER — animações & polimento "big tech"
   Camada aditiva. Tudo respeita prefers-reduced-motion.
   ════════════════════════════════════════════════════ */

/* ─── Barra de progresso de scroll (topo) ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 200;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--g-dark), var(--g), var(--g-bright));
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
  will-change: transform;
}

/* ─── Canvas de constelação no hero ─── */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 35%, transparent 85%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 35%, transparent 85%);
}
#hero .wrap.hero-inner {
  z-index: 2;
}

/* Glow do hero agora respira suavemente */
.hero-glow {
  animation: heroGlowPulse 9s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.08); }
}

/* ─── Entrada do hero em cascata (no load) ─── */
.hero-left > *,
.hero-right {
  opacity: 0;
  animation: heroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-left > *:nth-child(1) { animation-delay: 0.10s; }
.hero-left > *:nth-child(2) { animation-delay: 0.20s; }
.hero-left > *:nth-child(3) { animation-delay: 0.30s; }
.hero-left > *:nth-child(4) { animation-delay: 0.40s; }
.hero-left > *:nth-child(5) { animation-delay: 0.50s; }
.hero-right { animation-delay: 0.35s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* Parallax cinematográfico (multi-camada, controlado por JS) */
[data-parallax] {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Título com brilho metálico animado */
.hero-title em {
  background: linear-gradient(100deg, var(--g) 18%, var(--g-bright) 50%, var(--g) 82%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShimmer 7s linear infinite;
}
@keyframes titleShimmer {
  to { background-position: 220% center; }
}

/* ─── Sistema de revelação em cascata (scroll) ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(44px) scale(0.96);
  filter: blur(7px);
  transition:
    opacity 0.95s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.95s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.95s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--rd, 0ms);
  will-change: opacity, transform, filter;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ─── Cards com "spotlight" que segue o mouse ─── */
.card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(
    520px circle at var(--mx, 50%) var(--my, 50%),
    rgba(16, 185, 129, 0.12),
    transparent 55%
  );
}
[data-spotlight]:hover .card-glow {
  opacity: 1;
}
/* Garante que o conteúdo do card fique acima do brilho */
[data-spotlight] > *:not(.card-glow) {
  position: relative;
  z-index: 1;
}

/* ─── Brilho de varredura no botão primário ─── */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary > * {
  position: relative;
  z-index: 1;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-20deg);
  z-index: 0;
}
.btn-primary:hover::after {
  animation: btnShine 0.9s ease;
}
@keyframes btnShine {
  to { left: 150%; }
}

/* ─── Estatísticas com contador (seção Vantagens) ─── */
.vant-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin: 4px 0 48px;
}
.vant-stat {
  padding: 36px 28px;
  background: var(--ink2);
  position: relative;
  transition: background 0.3s;
}
.vant-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--g), transparent);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.vant-stat:hover {
  background: var(--ink3);
}
.vant-stat:hover::before {
  width: 100%;
}
.vant-stat-num {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(42px, 4.6vw, 60px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--g);
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  font-variant-numeric: tabular-nums;
}
.vant-stat-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 10px;
}
.vant-stat-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.65;
}
@media (max-width: 1024px) {
  .vant-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .vant-stats {
    grid-template-columns: 1fr;
  }
}

/* ─── Faixa de credenciais (marquee) ─── */
.trust-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(13, 22, 16, 0.45);
  padding: 26px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.trust-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.trust-band:hover .trust-track {
  animation-play-state: paused;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color 0.25s;
}
.trust-item:hover {
  color: var(--g-bright);
}
.trust-item::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 10px var(--g);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Elevação extra nos cards-serviço ao hover ─── */
.pilares-grid--two .pilar-card,
.sv-card {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s,
    box-shadow 0.4s;
}
.pilares-grid--two .pilar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -36px rgba(16, 185, 129, 0.4);
}
.sv-card:hover {
  box-shadow: 0 30px 70px -38px rgba(16, 185, 129, 0.35);
}

/* WhatsApp flutuante: leve respiração no ícone */
.wa-float svg {
  animation: waBob 3.4s ease-in-out infinite;
}
@keyframes waBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2px); }
}

/* ─── Acessibilidade: desliga movimento ─── */
@media (prefers-reduced-motion: reduce) {
  .hero-left > *,
  .hero-right { opacity: 1; animation: none; }
  .hero-glow { animation: none; }
  .hero-title em { animation: none; }
  .trust-track { animation: none; }
  .wa-float svg { animation: none; }
  [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; }
  .scroll-progress { display: none; }
  .btn-primary::after { display: none; }
}

/* ════════════════════════════════════════════════════
   SENTINELA — CUSTOM GRAPHICS & CHAT SIMULATOR
   ════════════════════════════════════════════════════ */
.phone {
  position: relative;
  width: 360px;
  height: 685px;
  max-width: 100%;
  margin: 0 auto;
  background: #030712;
  border: 12px solid #1e293b;
  border-radius: 44px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8),
              0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 1;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
/* Screen container */
.phone-status-bar {
  height: 38px;
  padding: 14px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: var(--text-dim);
  font-family: var(--font-body);
  user-select: none;
  background: #0b0f19;
  z-index: 9;
}
.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}
.phone-status-icons svg {
  color: var(--text-dim);
  opacity: 0.8;
}
.battery-icon {
  width: 18px;
  height: 9px;
  border: 1px solid var(--text-dim);
  border-radius: 2px;
  padding: 1px;
  display: flex;
  align-items: center;
  position: relative;
  opacity: 0.8;
}
.battery-body {
  width: 80%;
  height: 100%;
  background: var(--text-dim);
  border-radius: 1px;
}
.battery-cap {
  width: 1.5px;
  height: 3px;
  background: var(--text-dim);
  border-radius: 0 0.5px 0.5px 0;
  position: absolute;
  right: -2px;
  top: 2px;
}
.dynamic-island {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 18px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6px;
  border: 1px solid rgba(16, 185, 129, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.dynamic-island-camera {
  width: 5px;
  height: 5px;
  background: #06110d;
  border-radius: 50%;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.2);
}
.phone-header {
  height: 52px;
  background: var(--ink3);
  background: #0b0f19;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
  z-index: 8;
  user-select: none;
}
.phone-header-back {
  color: var(--text-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
}
.phone-header-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink2);
  border: 1.5px solid var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g);
  position: relative;
}
.phone-header-avatar svg {
  color: var(--g);
}
.phone-header-avatar .status-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 7px;
  height: 7px;
  background: var(--g);
  border: 1px solid var(--ink3);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--g);
}
.phone-header-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.phone-header-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-title);
  letter-spacing: 0.05em;
}
.phone-header-subtitle {
  font-size: 8px;
  color: var(--g);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 3px;
}
.phone-header-actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
  color: var(--text-dim);
}
.phone-header-actions svg {
  opacity: 0.7;
}
.phone-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #090d16;
  background-image: none;
  padding-bottom: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.phone-chat-body::-webkit-scrollbar {
  width: 4px;
}
.phone-chat-body::-webkit-scrollbar-track {
  background: transparent;
}
.phone-chat-body::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 4px;
}
.phone-chat-body::-webkit-scrollbar-thumb:hover {
  background: var(--g);
}
.phone-chat-body .day {
  align-self: center;
  font-size: 9px;
  color: var(--text-mute);
  background: rgba(16, 185, 129, 0.06);
  padding: 3px 10px;
  border-radius: 100px;
  margin: 2px 0 6px;
  font-family: var(--font-body);
}
.phone-footer {
  background: var(--ink3);
  border-top: 1px solid var(--line);
  padding: 8px 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 8;
}
.phone-input-placeholder {
  flex: 1;
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 10.5px;
  color: var(--text-mute);
  user-select: none;
}
.phone-send-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--g);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}
.phone-home-indicator {
  width: 90px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin: 0 auto 6px;
  flex-shrink: 0;
  z-index: 9;
}
.bub {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  font-size: 11.5px;
  line-height: 1.4;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  animation: bubbleIn 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  will-change: opacity, transform;
}
.bub.in {
  align-self: flex-start;
  background: #1f2937;
  border-bottom-left-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: #f3f4f6;
}
.bub.out {
  align-self: flex-end;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border-bottom-right-radius: 3px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: #ffffff;
}
.bub.out.system {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #9ca3af;
  align-self: center;
  max-width: 92%;
  border-radius: 8px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  padding: 8px 10px;
}
.bub.out.system .who {
  color: var(--g);
}
.bub .who {
  display: block;
  font-size: 9px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--g-bright);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bub.out .who {
  color: var(--text);
}
.bub.out.system .who {
  color: var(--g-bright);
}
.bub .fwd {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 9.5px;
  color: var(--text-mute);
  font-style: italic;
  margin-bottom: 4px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  user-select: none;
}
.bub .fwd svg {
  color: var(--text-mute);
  flex-shrink: 0;
  width: 10px;
  height: 10px;
}
.bub .tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 8.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tag.fraude {
  background: rgba(255, 93, 108, 0.15);
  color: #ff8a95;
  border: 1px solid rgba(255, 93, 108, 0.2);
}
.tag.seguro {
  background: rgba(16, 185, 129, 0.15);
  color: var(--g-bright);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.bub.typing {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--g-dark), var(--g-dim));
  border-bottom-right-radius: 3px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  width: 70px;
}
.typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 10px;
  margin-top: 2px;
}
.typing-dots span {
  width: 5px;
  height: 5px;
  background: var(--text);
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
  display: inline-block;
}
.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

/* Simulator Controls underneath the phone */
.simulator-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 5;
  margin-top: 28px;
}
.sim-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-strong);
  color: var(--text-dim);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.sim-btn:hover {
  border-color: var(--text-dim);
  color: var(--text);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
}
.sim-btn.active {
  background: rgba(16, 185, 129, 0.08);
  border-color: var(--g);
  color: var(--g-bright);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}
.sim-btn svg {
  transition: transform 0.3s ease;
}
.sim-btn:hover svg {
  transform: scale(1.1);
}

@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes typingDot {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-3px); opacity: 1; }
}

@media (max-width: 480px) {
  .phone {
    width: 290px;
    height: 520px;
    border-width: 6px;
    border-radius: 32px;
  }
  .phone-status-bar {
    height: 32px;
    padding: 10px 14px 0;
    font-size: 9px;
  }
  .dynamic-island {
    top: 6px;
    width: 74px;
    height: 15px;
  }
  .phone-header {
    height: 46px;
    padding: 0 10px;
    gap: 6px;
  }
  .phone-header-avatar {
    width: 26px;
    height: 26px;
  }
  .phone-header-title {
    font-size: 10px;
  }
  .phone-header-subtitle {
    font-size: 7.5px;
  }
  .phone-chat-body {
    padding: 10px 12px;
    gap: 6px;
  }
  .bub {
    font-size: 10.5px;
    padding: 6px 8px;
    border-radius: 12px;
  }
  .bub.out.system {
    font-size: 9.5px;
    padding: 6px 8px;
  }
  .phone-footer {
    padding: 6px 10px 12px;
  }
  .phone-input-placeholder {
    font-size: 9.5px;
    padding: 5px 10px;
  }
  .phone-send-btn {
    width: 24px;
    height: 24px;
  }
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  text-align: left;
  flex: 1; /* Pushes the button to the bottom and aligns layout */
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-dim);
  transition: color 0.2s;
}
.plan-features li:hover {
  color: var(--text);
}
.plan-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--g);
  transition: transform 0.2s, color 0.2s;
}
.plan-features li:hover svg {
  transform: scale(1.15);
  color: var(--g-bright);
}

/* Plan Button Styles helper */
.btn-plan {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: 17px 24px;
  border-radius: 10px; /* Rounded corners to match cards */
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.btn-plan .btn-wpp-ico {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}
/* brilho de varredura nos botoes de plano */
.btn-plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-22deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn-plan:hover::before { left: 150%; }

/* planos laterais (ghost): fundo tingido que preenche e levanta no hover */
.btn-ghost.btn-plan {
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.05);
  color: var(--text);
}
.btn-ghost.btn-plan:hover {
  border-color: var(--g);
  background: rgba(16, 185, 129, 0.14);
  color: var(--g-bright);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -14px rgba(16, 185, 129, 0.55);
}
/* plano em destaque (primary): glow mais forte */
.btn-primary.btn-plan {
  box-shadow: 0 10px 26px -10px rgba(16, 185, 129, 0.5);
}
.btn-primary.btn-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px -12px rgba(16, 185, 129, 0.7);
}



/* ════════════════════════════════════════════════════
   DUVIDAS FREQUENTES — PREMIUM ACCORDION FAQ
   ════════════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ink2);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.faq-item:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(16, 185, 129, 0.12);
}
.faq-item[open] {
  border-color: var(--g);
  background: linear-gradient(180deg, var(--ink2) 0%, rgba(16, 185, 129, 0.02) 100%);
  box-shadow: 0 16px 40px -15px rgba(16, 185, 129, 0.2);
}
.faq-item summary {
  padding: 22px 28px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--g-bright);
}
.faq-item summary .faq-icon {
  color: var(--g);
  font-size: 22px;
  font-weight: 300;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
  user-select: none;
}
.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
  color: var(--g-bright);
}
.faq-answer {
  padding: 0 28px 24px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dim);
  border-top: 1px dashed rgba(16, 185, 129, 0.12);
  margin-top: -4px;
  padding-top: 20px;
  animation: faqSlideIn 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@keyframes faqSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════════════════
   PROTEÇÃO SOB MEDIDA — PREMIUM PRICING PLANS
   ════════════════════════════════════════════════════ */
.pilares-grid--three .pilar-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13, 22, 18, 0.7) 0%, rgba(9, 13, 22, 0.95) 100%);
  backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 44px 32px 36px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.pilares-grid--three .pilar-card:hover {
  border-color: var(--g-bright);
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, rgba(9, 13, 22, 0.98) 100%);
  box-shadow: 0 30px 60px -20px rgba(16, 185, 129, 0.45);
}
.pilares-grid--three .pilar-card:hover::after {
  opacity: 0.08;
}

.pilares-grid--three .pilar-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-bright);
  margin-bottom: 24px;
  font-family: var(--font-body);
}
.pilares-grid--three .pilar-card.pilar-card--highlight .pilar-label {
  background: rgba(16, 185, 129, 0.18);
  border-color: var(--g);
  color: var(--text);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.pilar-label--featured {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pilar-label--featured::before {
  display: none !important;
}

.badge-dot {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--g);
  border-radius: 50%;
  flex-shrink: 0;
}
.badge-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--g);
  animation: badgePing 2s infinite cubic-bezier(0.25, 0, 0, 1);
  opacity: 0;
}

@keyframes badgePing {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

.pilares-grid--three .pilar-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.pilares-grid--three .pilar-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 28px;
  min-height: 70px;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 20px;
}

/* ════════════════════════════════════════════════════
   TERMINAL MOCKUP — PENTESTING SYSTEM
   ════════════════════════════════════════════════════ */
.terminal {
  width: 100%;
  max-width: 440px;
  background: var(--ink2);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 18px;
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.6;
  color: var(--g-bright);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(16, 185, 129, 0.08) inset;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.terminal-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.terminal-dots {
  display: flex;
  gap: 6px;
}
.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.terminal-dot--red { background: #ff5d6c; }
.terminal-dot--yellow { background: #ffd166; }
.terminal-dot--green { background: #10b981; }
.terminal-title {
  font-size: 10px;
  color: var(--text-mute);
  margin-left: 8px;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}
.terminal-body {
  min-height: 190px;
  max-height: 190px;
  overflow: hidden;
}
.terminal-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--g-bright);
  margin-left: 2px;
  animation: terminalCursorBlink 1.0s step-end infinite;
  vertical-align: middle;
}
@keyframes terminalCursorBlink {
  50% { opacity: 0; }
}
.terminal-prompt {
  color: var(--text-dim);
  user-select: none;
}
.terminal-comment {
  color: var(--text-mute);
}
.terminal-warning {
  color: #ff5d6c;
  font-weight: 500;
}
.terminal-success {
  color: var(--g);
}
.terminal-dim {
  color: var(--text-dim);
}

/* ════════════════════════════════════════════════════
   SOBRE — CARDS DE ESTATÍSTICA
   (coluna direita das páginas Empresas / Prefeituras / Pentest)
   ════════════════════════════════════════════════════ */
.sobre-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sobre-stat-card {
  position: relative;
  padding: 32px 30px;
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s;
}
.sobre-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--g), transparent);
  opacity: 0.6;
}
.sobre-stat-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 26px 60px -34px rgba(16, 185, 129, 0.4);
}
.sobre-stat-num {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--g);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.sobre-stat-label {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── LISTAS DE ITENS DE SEGURANÇA (COOPERATIVAS / PREFEITURAS) ── */
.seguranca-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  text-align: left;
}

.seguranca-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(16, 185, 129, 0.02);
  border: 1px solid rgba(16, 185, 129, 0.08);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.seguranca-item:hover {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.22);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.03);
}

.seguranca-icone-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--g);
  margin-top: 1px;
  transition: all 0.3s ease;
}

.seguranca-item:hover .seguranca-icone-container {
  background: rgba(16, 185, 129, 0.18);
  border-color: var(--g-bright);
  color: #fff;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

.seguranca-conteudo {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.seguranca-titulo {
  font-family: var(--font-title);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.seguranca-desc {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ──────────────────────────────────────────────────
   PREMIUM ENTERPRISE DESIGN SYSTEM OVERRIDES
   ────────────────────────────────────────────────── */

/* Monospace overrides */
.phone-status-bar,
.phone-chat-body .day,
.bub.out.system,
.terminal,
.term-line,
.terminal-body,
.terminal-title,
.terminal-prompt,
.terminal-comment,
.terminal-warning,
.terminal-success,
.terminal-dim,
.thanks-countdown,
.obrigado-logo,
code,
pre {
  font-family: var(--font-mono) !important;
}

/* Card aesthetics */
.pilar-card,
.servico-card,
.sobre-stat-card,
.empresas-dados-card,
.empresas-card,
.faq-item {
  border-radius: 12px !important;
  border: 1px solid var(--line) !important;
  background: linear-gradient(180deg, var(--ink2) 0%, rgba(6, 9, 14, 0.6) 100%) !important;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.faq-item[open] {
  border-color: rgba(16, 185, 129, 0.4) !important;
  background: linear-gradient(180deg, var(--ink2) 0%, rgba(16, 185, 129, 0.03) 100%) !important;
}

.pilar-card:hover,
.servico-card:hover,
.sobre-stat-card:hover,
.empresas-dados-card:hover,
.empresas-card:hover,
.faq-item:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(16, 185, 129, 0.25) !important;
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

/* Remove cheap top lines on cards */
.pilar-card::before,
.servico-card::before {
  display: none !important;
}

/* Hero design polish */
#hero, #pentest-hero, #prefeituras-hero, #empresas-hero {
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(16, 185, 129, 0.05), transparent 80%) !important;
}

/* Ambient glow adjustments */
.hero-glow {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, transparent 70%) !important;
}

.grid-bg {
  opacity: 0.7;
}

/* Text and Titles */
.hero-title, .section-title, .pilar-title, .servico-title, .faq-question {
  letter-spacing: -0.02em !important;
}

.hero-title em, .section-title em, .thanks-title em {
  font-family: 'Instrument Serif', serif !important;
  font-style: italic !important;
}

/* App noise reduction (makes the text super clean and professional) */
.app::before {
  opacity: 0.15 !important;
}

/* Rich Cards inside Chat Bubbles */
.chat-rich-card {
  margin-top: 10px;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--font-body);
  text-align: left;
}

/* PDF Card styling */
.pdf-card {
  display: flex !important;
  align-items: center;
  gap: 12px;
  background: rgba(239, 68, 68, 0.04) !important;
  border: 1px solid rgba(239, 68, 68, 0.15) !important;
}
.pdf-icon {
  color: #ef4444;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.pdf-details {
  display: flex;
  flex-direction: column;
}
.pdf-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  word-break: break-all;
  line-height: 1.3;
}
.pdf-size {
  font-size: 10px;
  color: var(--text-mute);
  margin-top: 2px;
}

/* SMS Card styling */
.sms-card {
  border: 1px solid rgba(245, 158, 11, 0.15) !important;
  border-left: 3px solid #f59e0b !important; /* Warning yellow accent */
  background: rgba(245, 158, 11, 0.04) !important;
}
.sms-tag {
  font-size: 9px;
  font-weight: 700;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sms-sender {
  font-size: 9px;
  color: var(--text-mute);
  margin-left: 8px;
}
.sms-card .rich-card-body {
  font-size: 11.5px;
  line-height: 1.4;
  margin-top: 6px;
  color: #cbd5e1;
}

/* Pix Card styling */
.pix-card {
  border: 1px solid rgba(6, 182, 212, 0.15) !important;
  border-left: 3px solid #06b6d4 !important;
  background: rgba(6, 182, 212, 0.04) !important;
}
.rich-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  color: #06b6d4;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.pix-card code {
  display: block;
  font-family: var(--font-mono) !important;
  font-size: 9.5px !important;
  color: #a5f3fc;
  word-break: break-all;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px;
  border-radius: 4px;
  margin-top: 4px;
  border: 1px solid rgba(6, 182, 212, 0.1);
}






/* ════════════════════════════════════════════════════
   POLIMENTO v1.1
   ════════════════════════════════════════════════════ */

/* Botão flutuante de contratação por e-mail (páginas B2B).
   Reaproveita .wa-float e só troca o verde do WhatsApp pelo verde da marca. */
.mail-float {
  background: var(--g);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(16, 185, 129, 0.14);
}
.mail-float::after {
  background: rgba(16, 185, 129, 0.35);
}
.mail-float:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55), 0 0 0 4px rgba(16, 185, 129, 0.22);
}

/* Bandas sutis entre seções: dá profundidade a um layout quase todo preto.
   Só CSS — nenhuma marcação nova. */
main > section:nth-of-type(even) {
  border-top: 1px solid var(--line);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.016), rgba(255, 255, 255, 0) 55%);
}

/* Foco visível — o site não tinha nenhum (navegação por teclado ficava cega) */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--g-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Cartão informativo do bloco de contato alinhado aos demais métodos */
.contato-methods .contato-extra {
  border-radius: 12px;
}

/* ═══════════════════════════════════════════════
   TIPOGRAFIA DE DISPLAY — correção de escala e quebra
   O título do hero rodava a 92px numa coluna de 548px, quebrando em
   4 linhas com órfãs. Escala menor + text-wrap: balance resolve a
   composição sem mexer no HTML.
   ═══════════════════════════════════════════════ */
/* Coluna do texto mais larga: o mockup ocupa 360px e não precisa de 476px.
   Com 620px a linha "mensagem suspeita?" cabe inteira, como o <br> pretendia. */
@media (min-width: 769px) {
  .hero-inner {
    grid-template-columns: 1.45fr 1fr;
    gap: 56px;
  }
}
.hero-title {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.06;
  text-wrap: balance;
}
.hero-title em {
  line-height: 1.02;
}

.section-title,
.thanks-title {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  text-wrap: balance;
}

/* "01 /", "02 /" … quebravam em duas linhas dentro do flex do cabeçalho */
.section-num {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Alguns cabeçalhos têm um parágrafo de apoio dentro do <header>. Como o
   header é flex numa linha só, esse <p> espremia o título a ~340px e ele
   quebrava em 3 linhas. Agora o parágrafo cai para a linha de baixo. */
.section-header {
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-header > p {
  flex: 1 0 100%;
  margin-top: 4px;
  max-width: 68ch; /* medida de leitura — sem isso a linha ia a ~110 caracteres */
}
.section-header > .section-title {
  flex-shrink: 0;
  max-width: min(780px, 100%);
}

.filosofia-quote {
  text-wrap: balance;
}

/* O indicador "role para explorar" é absoluto (bottom: 32px) e ocupa ~100px.
   Em heros mais curtos ele caía por cima da linha de métricas. */
section:has(> .hero-scroll) {
  padding-bottom: 132px;
}
@media (max-width: 768px) {
  section:has(> .hero-scroll) {
    padding-bottom: 96px;
  }
  .hero-scroll {
    display: none; /* no mobile só rouba altura da primeira dobra */
  }
}
