/* ============================================================
   CASPSEG — Tecnologia e Segurança que Protege
   Identidade visual 2026 · Preto / Branco / Azul Tech
   ============================================================ */

@font-face {
  font-family: 'Ethnocentric';
  src: url('../assets/Ethnocentric-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

:root {
  --black: #000000;
  --white: #FFFFFF;
  --tech-blue: #13A6F0;

  --blue-bright: #38c2ff;
  --blue-deep: #0a7fc0;
  --blue-ink: #061a26;
  --blue-dark: #0d2f42;

  --surface-1: #05070a;
  --surface-2: #0a0e13;
  --surface-3: #10161d;
  --surface-4: #18212b;

  --line: rgba(19, 166, 240, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);

  --text-body: #c7d2db;
  --text-muted: #8ba0ae;
  --text-strong: #f2f6f9;

  --font-display: 'Ethnocentric', 'Segoe UI', Tahoma, sans-serif;
  --font-body: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-glow: 0 0 0 1px rgba(19, 166, 240, 0.35), 0 12px 40px -12px rgba(19, 166, 240, 0.45);
  --shadow-card: 0 18px 44px -18px rgba(0, 0, 0, 0.85);

  --container: 1180px;
  --header-h: 78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--tech-blue); text-decoration: none; }
a:hover { color: var(--blue-bright); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; color: var(--text-strong); font-weight: 700; line-height: 1.18; }
p { margin: 0; }

::selection { background: var(--tech-blue); color: var(--black); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--surface-1); }
::-webkit-scrollbar-thumb { background: var(--blue-dark); border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--tech-blue); }

/* ---------- Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: 96px; position: relative; }

.section-head { max-width: 720px; margin-bottom: 56px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tech-blue);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--tech-blue);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 40px);
  text-transform: uppercase;
  color: var(--white);
}
.section-title .accent { color: var(--tech-blue); }

.section-sub { margin-top: 18px; font-size: 17px; color: var(--text-muted); }

/* Cabeçalhos centralizados */
.center,
.section-head--center { text-align: center; }
.center.section-head,
.section-head.section-head--center,
.center .section-head,
.section-head--center .section-head { margin-inline: auto; }
.center .kicker::before,
.section-head--center .kicker::before { display: none; }
.center .section-sub,
.section-head--center .section-sub { margin-inline: auto; max-width: 620px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--tech-blue);
  color: var(--black);
  box-shadow: 0 10px 30px -10px rgba(19, 166, 240, 0.75);
}
.btn-primary:hover {
  background: var(--blue-bright);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(19, 166, 240, 0.5);
}
.btn-ghost:hover { border-color: var(--tech-blue); background: rgba(19, 166, 240, 0.08); color: var(--white); }

.btn-whatsapp {
  background: #25d366;
  color: #05150b;
}
.btn-whatsapp:hover { background: #31e374; color: #05150b; transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
  color: var(--text-muted);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
  padding-block: 6px;
}
.topbar-list { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-body);
}
.topbar-list a:hover { color: var(--tech-blue); }
.topbar-list svg { width: 15px; height: 15px; color: var(--tech-blue); }
.topbar-loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-body);
  border-bottom: 1px dashed transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.topbar-loc:hover { color: var(--tech-blue); border-bottom-color: var(--tech-blue); }
.topbar-loc svg { width: 15px; height: 15px; color: var(--tech-blue); }
.topbar-webmail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-body);
  border-bottom: 1px dashed transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  font-weight: 600;
}
.topbar-webmail:hover { color: var(--tech-blue); border-bottom-color: var(--tech-blue); }
.topbar-webmail svg { width: 15px; height: 15px; color: var(--tech-blue); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s ease;
}
.header.scrolled { background: rgba(0, 0, 0, 0.94); box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.9); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 14px; position: relative; }
.brand-img { width: auto; max-width: 200px; max-height: 72px; object-fit: contain; }
.brand-img--footer { max-width: 190px; max-height: 66px; }

/* Logomarca original (PNG) — brilho pulsante suave, sempre visível */
.brand-logo { position: relative; display: inline-flex; }
.brand-logo .brand-main {
  display: block;
  height: 76px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(19, 166, 240, 0.35));
  animation: brand-glow 3.6s ease-in-out infinite;
}
.brand-logo:hover .brand-main {
  animation-play-state: paused;
  filter: drop-shadow(0 0 28px rgba(19, 166, 240, 0.9));
}
@keyframes brand-glow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(19, 166, 240, 0.30)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 20px rgba(19, 166, 240, 0.70)); transform: scale(1.02); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-logo .brand-main { animation: none; }
}

.nav { display: flex; align-items: center; gap: 4px; position: relative; }
.nav a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.nav a svg { width: 15px; height: 15px; flex: 0 0 15px; opacity: 0.85; }
.nav a:hover { color: var(--blue-bright); transform: translateY(-1px); }
.nav a.active { color: var(--white); }

/* Destaque que segue o item ativo (pílula deslizante, sem desfocar o texto) */
.gooey-blob {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(19,166,240,0.30), rgba(10,127,192,0.22));
  border: 1px solid rgba(19,166,240,0.55);
  box-shadow: 0 0 22px rgba(19,166,240,0.35), inset 0 0 12px rgba(19,166,240,0.25);
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.44, 1), width 0.5s cubic-bezier(0.34, 1.4, 0.44, 1), opacity 0.3s ease;
  opacity: 0;
  z-index: 0;
}
.gooey-nav.is-ready .gooey-blob { opacity: 1; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 11px 20px; font-size: 14px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--surface-1);
  z-index: 55;
  padding: 32px 28px 40px;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  border-top: 1px solid var(--line-soft);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-body);
  padding: 14px 8px;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .mm-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
  background: rgba(19, 166, 240, 0.1);
  color: var(--tech-blue);
}
.mobile-menu .mm-ico svg { width: 17px; height: 17px; }
.mobile-menu a:hover { color: var(--tech-blue); }
.mobile-menu .btn { margin-top: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 42px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(19, 166, 240, 0.22), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(19, 166, 240, 0.14), transparent 55%),
    linear-gradient(180deg, #020305 0%, #05080c 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(19, 166, 240, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 166, 240, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 42%;
  background:
    radial-gradient(420px 320px at 70% 30%, rgba(19, 166, 240, 0.18), transparent 70%),
    radial-gradient(300px 260px at 30% 80%, rgba(19, 166, 240, 0.14), transparent 70%);
  filter: blur(2px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding-block: 72px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(19, 166, 240, 0.08);
  color: var(--tech-blue);
  padding: 8px 16px;
  border-radius: 60px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--tech-blue); box-shadow: 0 0 0 0 rgba(19,166,240,.6); animation: pulse 2s infinite; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(19,166,240,.55); }
  70% { box-shadow: 0 0 0 9px rgba(19,166,240,0); }
  100% { box-shadow: 0 0 0 0 rgba(19,166,240,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.08;
  color: var(--white);
  text-transform: uppercase;
}
.hero-title .accent { color: var(--tech-blue); }

.hero-lead {
  margin-top: 24px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-muted);
  max-width: 560px;
}
.hero-lead strong { color: var(--text-strong); }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }

.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.hero-tags span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-body);
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.03);
  padding: 7px 14px;
  border-radius: 60px;
}
.hero-tags span b { color: var(--tech-blue); font-weight: 700; }

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 520px;
}
.hero-floats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.hero-floats-top { justify-content: center; }
.hero-card {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(160deg, rgba(24,33,43,0.9), rgba(5,7,10,0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(19,166,240,0.7), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.monitor-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.monitor-title { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); display: inline-flex; align-items: center; gap: 8px; }
.monitor-title .rec { width: 8px; height: 8px; border-radius: 50%; background: #ff3b3b; animation: pulse 1.6s infinite; }
.monitor-status { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: #2ee06a; }
.monitor-status .dot { width: 8px; height: 8px; border-radius: 50%; background: #2ee06a; box-shadow: 0 0 0 0 rgba(46,224,106,.5); animation: pulse 2s infinite; }

.monitor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cam-tile { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line-soft); background: #0b1118; aspect-ratio: 16/10; position: relative; }
.cam-tile .cam-scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tech-blue), transparent);
  animation: scan 4s ease-in-out infinite;
  opacity: 0.55;
}
@keyframes scan { 0% { top: 8%; } 50% { top: 88%; } 100% { top: 8%; } }
.cam-tile:nth-child(2) .cam-scan { animation-delay: 1.2s; }
.cam-tile:nth-child(3) .cam-scan { animation-delay: 2.1s; }
.cam-tile:nth-child(4) .cam-scan { animation-delay: 0.6s; }
.cam-label {
  position: absolute;
  left: 8px; bottom: 7px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.55);
  padding: 2px 7px;
  border-radius: 5px;
  backdrop-filter: blur(2px);
}
.cam-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: rgba(19,166,240,0.85); }
.cam-icon svg { width: 30px; height: 30px; }

.monitor-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.monitor-metric { display: flex; align-items: center; gap: 10px; }
.monitor-metric svg { width: 18px; height: 18px; color: var(--tech-blue); }
.monitor-metric b { display: block; font-size: 15px; color: var(--white); line-height: 1.1; }
.monitor-metric span { font-size: 11px; color: var(--text-muted); }

.hero-float {
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  animation: floaty 5s ease-in-out infinite;
  position: relative;
}
.hero-float svg { width: 22px; height: 22px; color: var(--tech-blue); flex: 0 0 22px; }
.hero-float b { display: block; font-size: 13px; color: var(--white); }
.hero-float span { font-size: 11px; color: var(--text-muted); }
.hero-floats-top .hero-float:nth-child(1) { animation-delay: 0.4s; }
.hero-floats-top .hero-float:nth-child(2) { animation-delay: 1.4s; }
.hero-floats-top .hero-float:nth-child(3) { animation-delay: 2.2s; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Stats band ---------- */
.stats-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  background:
    radial-gradient(900px 380px at 20% 0%, rgba(19,166,240,0.12), transparent 60%),
    radial-gradient(800px 400px at 90% 100%, rgba(19,166,240,0.08), transparent 60%),
    var(--surface-2);
  padding-block: 56px;
}
.web-threads {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
}
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat { text-align: center; }
.stat b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 5.4vw, 68px);
  color: var(--white);
  display: block;
  line-height: 1;
  text-shadow: 0 0 26px rgba(19, 166, 240, 0.45);
}
.stat b span { background: linear-gradient(90deg, #38c2ff 0%, #13A6F0 45%, #7ed8ff 100%); -webkit-background-clip: text; background-clip: text; color: #38c2ff; }
@supports ((-webkit-background-clip: text) or (background-clip: text)) and (-webkit-text-fill-color: transparent) {
  .stat b span { color: transparent; -webkit-text-fill-color: transparent; }
}
.stat > span { margin-top: 12px; display: block; font-size: 13.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-copy p { margin-bottom: 18px; }
.about-copy p:last-child { margin-bottom: 0; }

.about-points { display: grid; gap: 14px; margin-top: 28px; }
.about-point { display: flex; gap: 14px; align-items: flex-start; }
.about-point .ico {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(19,166,240,0.1);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--tech-blue);
}
.about-point .ico svg { width: 20px; height: 20px; }
.about-point h3 { font-size: 16px; margin-bottom: 4px; color: var(--white); }
.about-point p { font-size: 14.5px; color: var(--text-muted); }

.about-visual { position: relative; }
.about-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-3);
  position: relative;
}
.about-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-frame:not(:has(img)) { min-height: 380px; }
.about-frame .placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(320px 260px at 30% 20%, rgba(19,166,240,0.25), transparent 70%),
    linear-gradient(150deg, #0d2130, #05070a);
}
.about-frame .placeholder svg { width: 90px; height: 90px; color: rgba(19,166,240,0.7); }

.about-badge {
  position: absolute;
  bottom: -22px;
  right: 22px;
  background: var(--tech-blue);
  color: var(--black);
  font-weight: 800;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 260px;
}
.about-badge svg { width: 20px; height: 20px; }

/* ---------- Services ---------- */
.services {
  background:
    radial-gradient(900px 480px at 15% 0%, rgba(19,166,240,0.1), transparent 60%),
    var(--surface-1);
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.service-card {
  position: relative;
  background: var(--surface-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tech-blue), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: var(--shadow-card);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured {
  border-color: rgba(19,166,240,0.4);
  background: linear-gradient(170deg, #0d2130, var(--surface-3) 60%);
  box-shadow: 0 20px 50px -24px rgba(19,166,240,0.5);
}

.service-ico {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  background: rgba(19,166,240,0.12);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--tech-blue);
  margin-bottom: 24px;
}
.service-ico svg { width: 27px; height: 27px; }
.service-logo { max-width: 170px; width: 100%; height: auto; display: block; }

.service-tag {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--tech-blue);
  padding: 5px 11px;
  border-radius: 40px;
}

.service-card h3 { font-size: 19px; margin-bottom: 12px; color: var(--white); }
.service-card > p { font-size: 14.5px; color: var(--text-muted); margin-bottom: 18px; flex: 1; }

.service-feats { display: grid; gap: 9px; margin-bottom: 22px; }
.service-feats li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--text-body); }
.service-feats svg { width: 15px; height: 15px; color: var(--tech-blue); flex: 0 0 15px; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--tech-blue);
  margin-top: auto;
}
.service-link:hover { color: var(--blue-bright); }
.service-link svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ---------- Video section ---------- */
.video-section { background: var(--surface-1); }
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 9;
  background: var(--surface-3);
}
.video-wrap iframe,
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Process ---------- */
.process-band { background: var(--surface-2); border-block: 1px solid var(--line-soft); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-step { position: relative; padding: 26px 22px; border-radius: var(--radius-md); background: var(--surface-3); border: 1px solid var(--line-soft); }
.process-step .num {
  font-family: var(--font-display);
  font-size: 34px;
  color: rgba(19,166,240,0.35);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.process-step h3 { font-size: 16px; margin-bottom: 8px; color: var(--white); }
.process-step p { font-size: 13.5px; color: var(--text-muted); }

/* ---------- Differentials ---------- */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.diff-card {
  border: 1px solid var(--line-soft);
  background: linear-gradient(165deg, var(--surface-3), var(--surface-2));
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.diff-card:hover { transform: translateY(-5px); border-color: var(--line); }
.diff-ico { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: rgba(19,166,240,0.12); border: 1px solid var(--line); color: var(--tech-blue); margin-bottom: 20px; }
.diff-ico svg { width: 24px; height: 24px; }
.diff-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--white); }
.diff-card p { font-size: 14.5px; color: var(--text-muted); }

/* ---------- Compliance strip ---------- */
.compliance {
  background:
    radial-gradient(700px 300px at 50% -20%, rgba(19,166,240,0.16), transparent 60%),
    var(--surface-1);
  border-block: 1px solid var(--line-soft);
}
.compliance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.compliance-card { display: flex; gap: 18px; align-items: flex-start; padding: 22px; border-radius: var(--radius-md); border: 1px solid var(--line-soft); background: var(--surface-3); }
.compliance-card .ico { flex: 0 0 42px; width: 42px; height: 42px; border-radius: var(--radius-sm); background: rgba(19,166,240,0.1); border: 1px solid var(--line); display: grid; place-items: center; color: var(--tech-blue); }
.compliance-card .ico svg { width: 19px; height: 19px; }
.compliance-card h3 { font-size: 15px; margin-bottom: 6px; color: var(--white); }
.compliance-card p { font-size: 13px; color: var(--text-muted); }

/* ---------- Testimonials ---------- */
.testi-band {
  background:
    radial-gradient(800px 400px at 85% 20%, rgba(19,166,240,0.1), transparent 60%),
    var(--surface-1);
}
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card { border: 1px solid var(--line-soft); background: var(--surface-3); border-radius: var(--radius-md); padding: 30px 28px; display: flex; flex-direction: column; }
.testi-stars { display: flex; gap: 4px; color: var(--tech-blue); margin-bottom: 18px; }
.testi-stars svg { width: 17px; height: 17px; }
.testi-card blockquote { margin: 0 0 22px; font-size: 15px; color: var(--text-body); font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: rgba(19,166,240,0.15); border: 1px solid var(--line); display: grid; place-items: center; color: var(--tech-blue); font-weight: 800; font-size: 15px; text-transform: uppercase; }
.testi-author b { display: block; font-size: 14.5px; color: var(--white); }
.testi-author span { font-size: 12.5px; color: var(--text-muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 380px at 20% 30%, rgba(19,166,240,0.28), transparent 60%),
    radial-gradient(620px 340px at 90% 80%, rgba(19,166,240,0.18), transparent 60%),
    linear-gradient(160deg, #07141f, #010203);
  border-block: 1px solid var(--line-soft);
  padding-block: 90px;
}
.cta-banner .container { position: relative; z-index: 2; text-align: center; }
.cta-title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(26px, 3.8vw, 42px); color: var(--white); }
.cta-title .accent { color: var(--tech-blue); }
.cta-sub { max-width: 640px; margin: 18px auto 34px; color: var(--text-muted); font-size: 16.5px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--line-soft); border-radius: var(--radius-md); background: var(--surface-3); }
.contact-item .ico { flex: 0 0 46px; width: 46px; height: 46px; border-radius: var(--radius-sm); background: rgba(19,166,240,0.1); border: 1px solid var(--line); display: grid; place-items: center; color: var(--tech-blue); }
.contact-item .ico svg { width: 20px; height: 20px; }
.contact-item h3 { font-size: 15px; margin-bottom: 4px; color: var(--white); }
.contact-item a, .contact-item p { font-size: 14.5px; color: var(--text-muted); }
.contact-item a:hover { color: var(--tech-blue); }

.contact-form { border: 1px solid var(--line-soft); background: var(--surface-3); border-radius: var(--radius-lg); padding: 38px 34px; }
.form-title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 22px; color: var(--white); margin-bottom: 8px; }
.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--text-body); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background: var(--surface-2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--tech-blue);
  box-shadow: 0 0 0 3px rgba(19,166,240,0.18);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--tech-blue) 50%), linear-gradient(135deg, var(--tech-blue) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.field select option { background: var(--surface-3); }
.field .hint { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

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

.form-note { margin-top: 18px; font-size: 12.5px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 8px; }
.form-note a { text-decoration: underline; }
.form-note svg { width: 15px; height: 15px; flex: 0 0 15px; margin-top: 2px; color: var(--tech-blue); }

.form-msg { display: none; margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; }
.form-msg.ok { display: block; background: rgba(46,224,106,0.12); border: 1px solid rgba(46,224,106,0.4); color: #7af0ad; }
.form-msg.err { display: block; background: rgba(255,59,59,0.12); border: 1px solid rgba(255,59,59,0.4); color: #ff9b9b; }

/* ---------- Footer ---------- */
.footer { background: var(--surface-1); border-top: 1px solid var(--line-soft); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 18px; max-width: 300px; }
.footer-col h4 { font-size: 13px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { font-size: 14.5px; color: var(--text-muted); }
.footer-col a:hover { color: var(--tech-blue); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--tech-blue); flex: 0 0 16px; margin-top: 3px; }

.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1px solid var(--line-soft); display: grid; place-items: center; color: var(--text-muted); transition: all 0.2s ease; }
.socials a:hover { color: var(--black); background: var(--tech-blue); border-color: var(--tech-blue); }
.socials svg { width: 18px; height: 18px; }

.footer-bottom { border-top: 1px solid var(--line-soft); padding-block: 22px; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 13px; color: var(--text-muted); }
.footer-legal a:hover { color: var(--tech-blue); }

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  color: #05150b;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.2s ease;
}
.float-wa:hover { transform: translateY(-4px) scale(1.05); color: #05150b; }
.float-wa svg { width: 30px; height: 30px; }
.float-wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: pulse-ring 2.2s infinite;
  z-index: -1;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.7; }
  80%, 100% { transform: scale(1.65); opacity: 0; }
}

/* Cookie consent */
.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 24px);
  z-index: 90;
  max-width: 480px;
  width: calc(100% - 32px);
  background: linear-gradient(160deg, rgba(24,33,43,0.97), rgba(5,7,10,0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card), 0 0 30px rgba(19,166,240,0.15);
  padding: 18px 20px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.45s ease;
}
.cookie-bar.show { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.cookie-bar-inner { display: flex; align-items: flex-start; gap: 14px; }
.cookie-ico {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(19, 166, 240, 0.12);
  color: var(--tech-blue);
}
.cookie-ico svg { width: 18px; height: 18px; }
.cookie-bar p { margin: 0 0 12px; font-size: 13.5px; line-height: 1.55; color: var(--text-body); flex: 1; }
.cookie-bar a { color: var(--tech-blue); font-weight: 600; }
.cookie-bar a:hover { color: var(--blue-bright); }
.cookie-bar .cookie-accept { flex: 0 0 auto; padding: 9px 18px; font-size: 13.5px; }
@media (max-width: 560px) {
  .cookie-bar { bottom: 12px; }
  .cookie-bar-inner { flex-wrap: wrap; }
  .cookie-bar .cookie-accept { width: 100%; }
}

/* Back to top */
.to-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 70;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  border: 1px solid var(--line);
  color: var(--tech-blue);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.2s ease;
}
.to-top.visible { opacity: 1; visibility: visible; }
.to-top:hover { transform: translateY(-3px); }
.to-top svg { width: 18px; height: 18px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ============================================================
   EFEITOS (inspirados em reactbits.dev)
   ============================================================ */

/* BlurText — título aparece palavra por palavra com desfoque */
.title-blur .word {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(14px);
  transition: opacity 0.55s ease, filter 0.55s ease, transform 0.55s ease;
  transition-delay: calc(var(--i, 0) * 45ms);
  white-space: pre;
}
.title-blur.in-view .word { opacity: 1; filter: blur(0); transform: translateY(0); }
/* Destaques com várias palavras: permite quebra de linha sem grudar as palavras */
.title-blur .word.accent { white-space: normal; }

/* GradientText — palavra de destaque com gradiente animado */
.gradient-accent {
  color: var(--tech-blue);
  text-shadow: 0 0 22px rgba(19, 166, 240, 0.45);
}

/* SpotlightCard — brilho que acompanha o mouse no card */
.spotlight-card { position: relative; overflow: hidden; }
.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 50%), rgba(19, 166, 240, 0.16), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.spotlight-card:hover::before { opacity: 1; }
.spotlight-card > *:not(.service-tag) { position: relative; z-index: 1; }

/* Magnetic — botões que acompanham o mouse sutilmente */
.magnetic { transition: transform 0.18s ease-out; will-change: transform; }

/* Particles — partículas flutuantes no hero */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.particle {
  position: absolute;
  bottom: -12px;
  border-radius: 50%;
  background: var(--tech-blue);
  opacity: 0;
  animation: particle-up linear infinite;
}
@keyframes particle-up {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  12% { opacity: var(--po, 0.5); }
  85% { opacity: var(--po, 0.5); }
  100% { transform: translateY(-110vh) translateX(var(--px, 0px)); opacity: 0; }
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-hero {
  background:
    radial-gradient(800px 400px at 80% 10%, rgba(19,166,240,0.16), transparent 60%),
    linear-gradient(180deg, #020305, #06090d);
  border-bottom: 1px solid var(--line-soft);
  padding-block: 70px 56px;
}
.privacy-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(26px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 16px;
}
.privacy-hero .meta { font-size: 13.5px; color: var(--text-muted); display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.privacy-hero .meta .pill { border: 1px solid var(--line); background: rgba(19,166,240,0.08); color: var(--tech-blue); padding: 4px 12px; border-radius: 40px; font-weight: 700; font-size: 12px; }

.privacy-body { padding-block: 60px 90px; }
.privacy-layout { display: grid; grid-template-columns: 250px 1fr; gap: 48px; align-items: start; }

.toc { position: sticky; top: calc(var(--header-h) + 24px); border: 1px solid var(--line-soft); background: var(--surface-2); border-radius: var(--radius-md); padding: 22px; }
.toc h4 { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.toc ul { display: grid; gap: 4px; }
.toc a { display: block; font-size: 13.5px; color: var(--text-muted); padding: 7px 10px; border-radius: 6px; border-left: 2px solid transparent; }
.toc a:hover { color: var(--tech-blue); background: rgba(19,166,240,0.06); }
.toc a.active { color: var(--tech-blue); border-left-color: var(--tech-blue); background: rgba(19,166,240,0.08); }

.privacy-content { max-width: 780px; }
.privacy-content > section { margin-bottom: 52px; scroll-margin-top: calc(var(--header-h) + 30px); }
.privacy-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--white);
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.privacy-content h2 .num { color: var(--tech-blue); margin-right: 8px; }
.privacy-content h3 { font-size: 16px; color: var(--tech-blue); margin: 24px 0 10px; }
.privacy-content p { font-size: 15px; color: var(--text-body); margin-bottom: 14px; }
.privacy-content ul { margin: 0 0 16px; padding-left: 4px; display: grid; gap: 9px; }
.privacy-content ul li { font-size: 14.5px; color: var(--text-body); padding-left: 22px; position: relative; }
.privacy-content ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px; border-radius: 2px; background: var(--tech-blue); }
.privacy-content strong { color: var(--text-strong); }
.privacy-content .legal-ref { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--tech-blue); border: 1px solid var(--line); background: rgba(19,166,240,0.08); padding: 4px 12px; border-radius: 40px; margin: 4px 4px 4px 0; }

.notice-box {
  border: 1px solid var(--line);
  background: rgba(19,166,240,0.07);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--text-body);
}
.notice-box b { color: var(--tech-blue); }
.notice-box svg { width: 18px; height: 18px; vertical-align: -3px; margin-right: 8px; color: var(--tech-blue); }

.table-wrap { overflow-x: auto; margin: 18px 0; border-radius: var(--radius-md); border: 1px solid var(--line-soft); }
.data-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.data-table th, .data-table td { text-align: left; padding: 13px 16px; font-size: 13.5px; border-bottom: 1px solid var(--line-soft); }
.data-table th { background: var(--surface-3); color: var(--tech-blue); font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px; }
.data-table td { color: var(--text-body); vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }
.data-table td b { color: var(--text-strong); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: 2; }
  .hero-card { max-width: 420px; }
  .hero-floats-top { justify-content: center; }
  .services-grid, .diff-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .compliance-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .privacy-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* Menu de navegação só cabe completo a partir de ~1536px.
   Abaixo disso (laptops/tablets) usa o menu hambúrguer p/ não estourar/clipar o header. */
@media (max-width: 1535.98px) {
  .nav, .header-cta .btn-desktop { display: none; }
  .burger { display: flex; }
}

@media (max-width: 820px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .diff-grid, .testi-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-inner { padding-block: 56px; }
  .topbar-inner { justify-content: center; }
  .section { padding-block: 72px; }

  /* Blocos de texto corrido: justificados p/ alinhamento equilibrado no mobile */
  .hero-lead,
  .about-copy > p,
  .about-point p,
  .service-card p,
  .diff-card p,
  .process-step p,
  .compliance-card p,
  .testi-card blockquote,
  .cta-sub,
  .privacy-content p,
  .privacy-content ul li { text-align: justify; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }

  /* Tipografia proporcional à largura (fonte display é larga) */
  .hero-title { font-size: clamp(24px, 7.4vw, 34px); line-height: 1.16; }
  .section-title { font-size: clamp(22px, 6.4vw, 30px); line-height: 1.16; }
  .section { padding-block: 64px; }
  .section-head { margin-bottom: 42px; }
  .section-sub { font-size: 15.5px; }
  .hero-lead { margin-top: 18px; }
  .hero-cta { gap: 12px; margin-top: 26px; }
  .hero-cta .btn { padding: 13px 22px; font-size: 14px; }
}
