/* ===================================
   DADO SEGURO — CSS
   =================================== */

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

:root {
  --blue:        #1A8FE3;
  --blue-light:  #3AAFE3;
  --blue-dark:   #0D6CB5;
  --blue-glow:   rgba(26, 143, 227, 0.25);
  --dark:        #050C14;
  --dark-2:      #091422;
  --dark-3:      #0D1C2E;
  --dark-4:      #112038;
  --mid:         #1A2D42;
  --border:      rgba(26, 143, 227, 0.15);
  --border-mid:  rgba(26, 143, 227, 0.25);
  --text:        #E8F0F8;
  --text-muted:  rgba(232, 240, 248, 0.6);
  --white:       #FFFFFF;
  --nav-h:       72px;
  --radius:      16px;
  --radius-sm:   8px;
  --shadow:      0 8px 40px rgba(0,0,0,0.4);
  --shadow-blue: 0 8px 32px rgba(26,143,227,0.2);
  --font-heading:'Syne', sans-serif;
  --font-body:   'Inter', sans-serif;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Canvas partículas ---- */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ---- Botões ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(26,143,227,0.35);
}
.btn--primary:hover {
  background: var(--blue-light);
  box-shadow: 0 8px 32px rgba(26,143,227,0.5);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-mid);
}
.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; }

/* ---- Tipografia compartilhada ---- */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.eyebrow--light { color: var(--blue-light); }
.eyebrow--light::before { background: var(--blue-light); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.section-title--light { color: #fff; }
.section-title em { font-style: normal; color: var(--blue); }
.highlight { color: var(--blue); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-desc--light { color: rgba(255,255,255,0.7); }

/* ===================================
   NAVEGAÇÃO
   =================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(5, 12, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img {
  height: 40px;
  width: auto;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.25s;
}
.nav__link:hover { color: var(--text); }
.nav__link--cta {
  background: var(--blue);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(26,143,227,0.35);
}
.nav__link--cta:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================================
   HERO
   =================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  gap: 60px;
}

.hero__bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 80%);
}

.hero__glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero__glow--1 {
  width: 500px; height: 500px;
  background: rgba(26,143,227,0.12);
  top: -100px; right: -100px;
  animation: glowFloat1 8s ease-in-out infinite;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: rgba(26,143,227,0.08);
  bottom: 10%; left: -80px;
  animation: glowFloat2 10s ease-in-out infinite;
}

@keyframes glowFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.1); }
}
@keyframes glowFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero__content { position: relative; z-index: 2; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 10px;
  background: rgba(26,143,227,0.1);
  border: 1px solid var(--border-mid);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--blue-light);
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,143,227,0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(26,143,227,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(26,143,227,0.1); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title-highlight {
  color: var(--blue);
  position: relative;
}
.hero__title em { font-style: normal; color: var(--text-muted); }

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visual */
.hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__shield {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
}
.shield-ring--1 {
  width: 100%; height: 100%;
  animation: spinSlow 20s linear infinite;
  border-color: rgba(26,143,227,0.2);
  border-top-color: var(--blue);
}
.shield-ring--2 {
  width: 76%; height: 76%;
  animation: spinSlow 15s linear infinite reverse;
  border-color: rgba(26,143,227,0.15);
  border-right-color: rgba(26,143,227,0.5);
}
.shield-ring--3 {
  width: 52%; height: 52%;
  animation: spinSlow 10s linear infinite;
  border-color: rgba(26,143,227,0.2);
  border-bottom-color: var(--blue);
}

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

.shield-core {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 2px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 40px rgba(26,143,227,0.2);
}
/* ---- Dado 3D ---- */
.dice-wrap {
  perspective: 220px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dice-3d {
  width: 54px;
  height: 54px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateDice 10s linear infinite;
}

@keyframes rotateDice {
  0%   { transform: rotateX(22deg) rotateY(0deg); }
  100% { transform: rotateX(22deg) rotateY(360deg); }
}

.dice-face {
  position: absolute;
  width: 54px;
  height: 54px;
  background: rgba(5, 10, 18, 0.97);
  border: 1.5px solid #1A8FE3;
  box-shadow:
    0 0 6px rgba(26, 143, 227, 0.7),
    0 0 14px rgba(26, 143, 227, 0.25),
    inset 0 0 10px rgba(26, 143, 227, 0.07);
  border-radius: 5px;
}

.dice-face--front  { transform: translateZ(27px); }
.dice-face--back   { transform: rotateY(180deg) translateZ(27px); }
.dice-face--left   { transform: rotateY(-90deg) translateZ(27px); }
.dice-face--right  { transform: rotateY(90deg) translateZ(27px); }
.dice-face--top    { transform: rotateX(90deg) translateZ(27px); }
.dice-face--bottom { transform: rotateX(-90deg) translateZ(27px); }

/* Pips (pontos do dado) */
.pip {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1A8FE3;
  box-shadow: 0 0 5px rgba(26, 143, 227, 0.9), 0 0 10px rgba(26, 143, 227, 0.4);
}
.pip--tl { top: 9px;  left: 9px; }
.pip--tr { top: 9px;  right: 9px; }
.pip--cl { top: 50%;  left: 9px;  transform: translateY(-50%); }
.pip--cr { top: 50%;  right: 9px; transform: translateY(-50%); }
.pip--c  { top: 50%;  left: 50%;  transform: translate(-50%, -50%); }
.pip--bl { bottom: 9px; left: 9px; }
.pip--br { bottom: 9px; right: 9px; }

.hero__data-points {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.data-point {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(9,20,34,0.9);
  border: 1px solid var(--border-mid);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-blue);
  backdrop-filter: blur(10px);
}
.data-point__icon { font-size: 0.9rem; }
.data-point--1 { top: 8%; left: -20px; animation: dataFloat1 4s ease-in-out infinite; }
.data-point--2 { bottom: 20%; right: -24px; animation: dataFloat2 5s ease-in-out infinite 1s; }
.data-point--3 { bottom: 4%; left: 0; animation: dataFloat1 4.5s ease-in-out infinite 0.5s; }

@keyframes dataFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes dataFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0.5) translateY(20px); }
}

/* ===================================
   STATS BAR
   =================================== */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(26,143,227,0.04), transparent);
}
.stats-bar__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.stat-item__number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.stat-item__suffix {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
}
.stat-item__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.stat-item__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===================================
   SOBRE
   =================================== */
.sobre {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre__visual {
  position: relative;
}
.sobre__card-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}
.sobre__card {
  position: absolute;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.sobre__card--back {
  inset: 0;
  background: var(--dark-3);
  transform: rotate(6deg) scale(0.95);
}
.sobre__card--mid {
  inset: 0;
  background: var(--dark-4);
  transform: rotate(3deg) scale(0.97);
}
.sobre__card--front {
  inset: 0;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border-color: var(--border-mid);
  box-shadow: var(--shadow-blue);
  display: flex;
  align-items: stretch;
}
.sobre__card-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sobre__card-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,143,227,0.1);
  border-radius: var(--radius-sm);
  color: var(--blue);
}
.sobre__card-icon svg { width: 32px; height: 32px; }
.sobre__card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}
.sobre__card-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.sobre__card-tag {
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-transform: uppercase;
}

.sobre__badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--dark-2);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-blue);
  backdrop-filter: blur(10px);
  animation: dataFloat1 5s ease-in-out infinite;
}
.badge-float__icon { font-size: 1.5rem; }
.sobre__badge-float strong {
  display: block;
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 600;
}
.sobre__badge-float span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.sobre__text { position: relative; z-index: 1; }
.sobre__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
}
.sobre__body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.sobre__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}
.pillar__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(26,143,227,0.5);
}

/* ===================================
   SERVIÇOS
   =================================== */
.servicos {
  padding: 120px 0;
  position: relative;
  z-index: 2;
  background: var(--dark-2);
}
.servicos__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg,
    var(--blue) 0px,
    var(--blue) 1px,
    transparent 1px,
    transparent 20px
  );
}

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

.servico-card {
  position: relative;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  cursor: default;
}
.servico-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}
.servico-card--featured {
  border-color: rgba(26,143,227,0.3);
  background: linear-gradient(135deg, var(--dark-3), rgba(26,143,227,0.06));
}
.servico-card--featured:hover {
  border-color: var(--blue);
}
.servico-card__glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--blue-glow);
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.servico-card:hover .servico-card__glow { opacity: 1; }

.servico-card__badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.servico-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.servico-card__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(26,143,227,0.12);
  line-height: 1;
}
.servico-card__icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,143,227,0.1);
  border-radius: var(--radius-sm);
  color: var(--blue);
  transition: background 0.3s;
}
.servico-card:hover .servico-card__icon { background: rgba(26,143,227,0.18); }
.servico-card__icon svg { width: 30px; height: 30px; }

.servico-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.servico-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.servico-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.servico-card__list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.servico-card__list li::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.servico-card__cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.servico-card__cta:hover { color: var(--blue-light); gap: 4px; }

/* ===================================
   PARA QUEM
   =================================== */
.para-quem {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
.para-quem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pq-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all 0.3s var(--ease);
}
.pq-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.pq-card--featured {
  border-color: rgba(26,143,227,0.25);
  background: linear-gradient(135deg, var(--dark-2), rgba(26,143,227,0.05));
}
.pq-card__icon-wrap {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,143,227,0.1);
  border-radius: var(--radius-sm);
  color: var(--blue);
  margin-bottom: 20px;
}
.pq-card__icon-wrap svg { width: 28px; height: 28px; }
.pq-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.pq-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.pq-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pq-card__tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(26,143,227,0.1);
  border: 1px solid rgba(26,143,227,0.2);
  border-radius: 50px;
  padding: 3px 10px;
  letter-spacing: 0.03em;
}

/* ===================================
   PROCESSO
   =================================== */
.processo {
  padding: 80px 0 120px;
  position: relative;
  z-index: 2;
  background: var(--dark-2);
}
.processo__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.processo__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(26,143,227,0.2));
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(26,143,227,0.2);
  flex-shrink: 0;
}
.step__content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step__content p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===================================
   DIFERENCIAIS
   =================================== */
.diferenciais {
  padding: 120px 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.diferenciais__inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}
.diferenciais__header {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.diferenciais__header .btn { margin-top: 32px; }
.diferenciais__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.dif-card {
  background: rgba(5,12,20,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s var(--ease);
}
.dif-card:hover {
  border-color: var(--border-mid);
  background: rgba(9,20,34,0.8);
  transform: translateY(-3px);
}
.dif-card__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.dif-card__icon svg { width: 28px; height: 28px; }
.dif-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.dif-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===================================
   LGPD EM NÚMEROS
   =================================== */
.lgpd-nums {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.lgpd-nums__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.num-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.num-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.num-card--featured {
  border-color: rgba(26,143,227,0.3);
  background: linear-gradient(135deg, var(--dark-2), rgba(26,143,227,0.08));
}
.num-card__value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}
.num-card__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.lgpd-nums__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.lgpd-nums__cta p {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* ===================================
   CONTATO
   =================================== */
.contato {
  padding: 120px 0;
  position: relative;
  z-index: 2;
  background: var(--dark-2);
}
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contato__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}
.contato__dados {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contato__dado {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contato__dado-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(26,143,227,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contato__dado-icon svg { width: 20px; height: 20px; }
.contato__dado-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contato__dado-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}
a.contato__dado-value:hover { color: var(--blue); }

.contato__social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(26,143,227,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.social-link:hover {
  background: rgba(26,143,227,0.15);
  border-color: var(--border-mid);
  color: var(--blue);
  transform: translateY(-2px);
}
.social-link svg { width: 18px; height: 18px; }

/* Form */
.contato__form {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-input {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,143,227,0.1);
}
.form-input::placeholder { color: rgba(232,240,248,0.3); }
.form-select { cursor: pointer; }
.form-select option { background: var(--dark-2); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-disclaimer {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  position: relative;
  z-index: 2;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(26,143,227,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.25s;
}
.footer__social a:hover {
  background: rgba(26,143,227,0.15);
  color: var(--blue);
}
.footer__social svg { width: 16px; height: 16px; }
.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a, .footer__contact a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__links a:hover, .footer__contact a:hover { color: var(--blue); }
.footer__contact p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer__links-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer__links-legal a:hover { color: var(--blue); }

/* ===================================
   WHATSAPP FLUTUANTE
   =================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 30px; height: 30px; }

/* ===================================
   ANIMAÇÕES DE ENTRADA
   =================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===================================
   RESPONSIVO
   =================================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 60px;
  }
  .hero__subtitle { margin: 0 auto 40px; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }
  .diferenciais__inner { grid-template-columns: 1fr; }
  .diferenciais__header { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(5,12,20,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--ease);
    border-bottom: 1px solid var(--border);
  }
  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__link { width: 100%; text-align: center; padding: 12px; }
  .nav__toggle { display: flex; }

  .sobre__grid, .contato__grid { grid-template-columns: 1fr; }
  .sobre__visual { display: none; }
  .servicos__grid, .para-quem__grid { grid-template-columns: 1fr; }
  .processo__steps { grid-template-columns: 1fr; }
  .processo__steps::before { display: none; }
  .step { align-items: flex-start; text-align: left; padding-left: 0; }
  .lgpd-nums__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__inner { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .stat-item__divider { display: none; }
  .diferenciais__cards { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .lgpd-nums__grid { grid-template-columns: 1fr; }
  .contato__form { padding: 24px; }
}
