/* ========== ANIMATION FAIL-SAFE LAYER ========== */
.js .js-fade,
.js [data-anim] { opacity: 0; }

.no-js .js-fade,
.no-js [data-anim] { opacity: 1 !important; transform: none !important; }

/* Submit button loading state — static, no animation */
.btn[disabled] {
  opacity: 0.6;
  cursor: wait;
  pointer-events: none;
}

/* Mobile menu micro-transition */
.mobile-menu {
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(.2,.8,.2,1);
}

/* Lazy image fade fallback */
img[loading="lazy"] {
  transition: opacity 0.3s ease;
}

/* ============================================================
   MDL Marketing and Global Solutions LLC
   style.css — Mobile-First, Super Responsivo
   ============================================================ */

:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #eef4fa;
  --text: #07111f;
  --muted: #627083;
  --border: #dbe5ef;
  --primary: #071827;
  --primary-2: #0b3558;
  --accent: #2bb4f3;
  --accent-soft: #e5f6ff;
  --success: #0f766e;
  --shadow: 0 26px 80px rgba(7,17,31,0.10);
  --shadow-soft: 0 16px 50px rgba(7,17,31,0.06);
  --radius: 20px;
  --radius-lg: 32px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(43,180,243,0.10), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(11,53,88,0.08), transparent 36%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 42%, #fff 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; } /* height:auto removido — conflitava com project-image */

/* ── CONTAINER ── */
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--primary); color: white;
  padding: 8px 16px; border-radius: 0 0 8px 0;
  z-index: 1000; font-weight: 700; font-size: 13px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ── COUNTER YEAR — operations h2 animated number ── */
.counter-year {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  font-weight: 900;
}

/* ── EYEBROW SCRAMBLE — monospace feel ── */
.eyebrow-scramble {
  font-family: 'Inter', monospace;
  letter-spacing: 0.05em;
}

/* ── HERO H1 — blur-to-focus reveal keeps overflow ── */
.hero h1 .wi {
  will-change: transform, filter, opacity;
}

/* ── PROJECT CARDS — preserve 3D for tilt hover ── */
.project-card {
  transform-style: preserve-3d;
}
.project-card .project-image-wrapper {
  transform: translateZ(4px); /* subtle depth layer */
}

/* ── NETWORK DECO NUM — starts hidden, JS fades in ── */
.network-deco-num {
  opacity: 0;
}

/* ── BADGE PING — will-change for scale animation ── */
.badge {
  will-change: transform;
  transform-origin: center;
}

/* ── GRADIENT TEXT — hero h1 accent words ── */
.hero h1 .wi:last-child {
  background: linear-gradient(135deg, var(--text) 40%, var(--primary-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION DIVIDER ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
  margin: 0;
  opacity: 0.6;
}

/* ── FEATURE CARD — transition micro-polish ── */
.feature-card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

/* ── DASHBOARD METRIC — pulse on number ── */
.metric h3 {
  font-variant-numeric: tabular-nums;
}

/* ── PROCESS ITEM — hover accent line ── */
.process-item {
  transition: background .18s ease, border-color .18s ease;
  position: relative;
}
.process-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0;
  transition: opacity .22s ease;
}
.process-item:hover::before { opacity: 1; }

/* ============================================================
   HERO SPOTLIGHT GRID — Mercury-style dot grid background
   ============================================================ */
.hero-spotlight-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(43,180,243,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 80% 40%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 80% 40%, black 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 900px) { .hero-spotlight-grid { display: none; } }

/* ============================================================
   ANIMATED UNDERLINE on H2 section titles
   ============================================================ */
.section-head h2 {
  position: relative;
  display: inline-block;
}
.section-head.center h2 {
  display: block; /* center layout needs block */
}
.section-head h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-2), var(--accent));
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(.2,.8,.2,1);
}
.section-head h2.underline-active::after { width: 48px; }
.section-head.center h2::after { left: 50%; transform: translateX(-50%); }

/* ============================================================
   SVG CHECKMARK DRAW — Compliance / Structure icons
   ============================================================ */
.sc-icon svg polyline,
.icon.check svg polyline {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  transition: stroke-dashoffset 0.5s cubic-bezier(.2,.8,.2,1);
}
.draw-active .sc-icon svg polyline,
.draw-active .icon.check svg polyline {
  stroke-dashoffset: 0;
}

/* ============================================================
   HERO TRUST ITEMS — counter number highlight
   ============================================================ */
.trust-item .counter-value {
  color: var(--primary);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ============================================================
   CURSOR GLOW / SPOTLIGHT
   ============================================================ */
#cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,180,243,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0; /* controlado por JS mousemove */
  transition: opacity 0.5s ease;
  top: 0; left: 0;
  will-change: transform;
}
/* Sem body:hover — JS controla via mousemove */
@media (max-width: 900px) { #cursor-glow { display: none; } }

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(7,17,31,0.22);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 60;
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
#back-to-top:hover {
  background: var(--primary-2);
  transform: translateY(-2px) scale(1.05);
}
@media (max-width: 600px) {
  #back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; }
}

/* ============================================================
   NAV ACTIVE LINK
   ============================================================ */
.nav-links a[data-nav].is-active {
  color: var(--primary);
  background: rgba(7,24,39,0.07);
  border-radius: 9px;
}

/* ============================================================
   HERO — Floating orbs CSS animation
   ============================================================ */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0; /* atrás do hero-grid que tem z-index:1 */
  filter: blur(40px);
  animation: orbFloat linear infinite;
  opacity: 0;
}
.hero-orb-1 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(43,180,243,0.14), transparent 70%);
  top: -60px; right: 8%;
  animation-duration: 12s;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(11,53,88,0.10), transparent 70%);
  bottom: 20px; left: 5%;
  animation-duration: 16s;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(43,180,243,0.08), transparent 70%);
  top: 40%; right: 30%;
  animation-duration: 20s;
  animation-delay: -8s;
}
/* Mobile: smaller orbs, less blur, less GPU */
@media (max-width: 900px) {
  .hero-orb-1 { width: 180px; height: 180px; filter: blur(24px); }
  .hero-orb-2 { width: 130px; height: 130px; filter: blur(20px); }
  .hero-orb-3 { display: none; } /* 3rd orb hidden on mobile */
}
@media (max-width: 375px) {
  .hero-orb-1, .hero-orb-2 { display: none; } /* all orbs hidden on very small screens */
}
@keyframes orbFloat {
  0%   { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.6; }
  25%  { transform: translateY(-20px) translateX(10px) scale(1.04); opacity: 0.8; }
  50%  { transform: translateY(-10px) translateX(-8px) scale(0.97); opacity: 0.6; }
  75%  { transform: translateY(-28px) translateX(6px) scale(1.02); opacity: 0.9; }
  100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.6; }
}

/* ============================================================
   CARD GLOW — border follows mouse (via CSS custom props set by JS)
   ============================================================ */
.card-glow {
  position: relative;
  overflow: hidden;
}
.card-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    220px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(43,180,243,0.10),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.card-glow:hover::before { opacity: 1; }


/* ============================================================
   HEADER
   ============================================================ */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(219,229,239,0.86);
  transition: box-shadow .3s ease, background .3s ease;
}
header.is-scrolled {
  box-shadow: 0 4px 24px rgba(7,17,31,0.06);
  background: rgba(255,255,255,0.97);
}
header.is-scrolled .nav { height: 60px; }

.nav {
  height: 72px;
  display: flex; justify-content: space-between; align-items: center;
  transition: height .3s ease;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; overflow: hidden; flex-shrink: 0;
}
.brand-mark img { width: 42px; height: 42px; object-fit: cover; border-radius: 12px; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name strong { font-size: 14px; font-weight: 900; letter-spacing: -0.05em; color: var(--primary); }
.brand-name span { font-size: 9px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a:not(.btn) {
  padding: 7px 10px; border-radius: 9px; color: #475467;
  font-size: 13px; font-weight: 600;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.nav-links a:not(.btn):hover { color: var(--primary); background: rgba(7,24,39,0.05); }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 10px; border-radius: 10px;
  background: none; border: none; transition: background .18s;
  -webkit-tap-highlight-color: transparent;
}
.hamburger:hover { background: rgba(7,24,39,0.06); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: all .28s cubic-bezier(.4,0,.2,1);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; top: 72px; z-index: 49;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 20px 16px; flex-direction: column; gap: 6px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; transform: translateY(-8px);
  transition: opacity .22s, transform .22s; pointer-events: none;
}
.mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-menu a {
  padding: 16px; border-radius: 14px; font-size: 16px;
  font-weight: 700; color: var(--primary); border: 1px solid transparent;
  transition: background .18s, border-color .18s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu a:hover,
.mobile-menu a:active { background: var(--surface-2); border-color: var(--border); }
.mobile-menu .btn { margin-top: 8px; text-align: center; padding: 16px; font-size: 15px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 12px 22px;
  font-size: 13px; font-weight: 800;
  transition: all .22s ease; border: 1px solid transparent;
  cursor: pointer; font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white; box-shadow: 0 10px 28px rgba(7,24,39,0.22);
}
.btn-primary:hover  { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 16px 40px rgba(7,24,39,0.28); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary { background: rgba(255,255,255,.88); color: var(--primary); border-color: var(--border); }
.btn-secondary:hover  { border-color: var(--primary-2); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-secondary:active { transform: translateY(0); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 88px 0 64px; }
.hero::before {
  content: ""; position: absolute; inset: -34% -14% auto auto;
  width: 600px; height: 600px; border-radius: 999px;
  background: radial-gradient(circle, rgba(43,180,243,0.18), rgba(43,180,243,0));
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 56px; align-items: center; position: relative; z-index: 1;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px; border: 1px solid rgba(43,180,243,0.22);
  background: rgba(255,255,255,.86); border-radius: 999px;
  color: var(--primary-2); font-weight: 800; font-size: 10px;
  letter-spacing: .10em; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(7,17,31,0.04);
}
.dot {
  width: 7px; height: 7px; background: var(--success);
  border-radius: 999px; box-shadow: 0 0 0 4px rgba(15,118,110,.12);
  animation: pulse 2.4s ease infinite; flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(15,118,110,.12); }
  50%      { box-shadow: 0 0 0 7px rgba(15,118,110,.06); }
}

h1 { margin: 18px 0 16px; font-size: clamp(36px, 5vw, 68px); line-height: .93; letter-spacing: -0.07em; color: var(--text); max-width: 680px; }
.hero p { font-size: 16px; color: var(--muted); max-width: 600px; margin: 0 0 26px; line-height: 1.65; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.trust-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 28px; }
.trust-item {
  padding: 14px; background: rgba(255,255,255,.82);
  border: 1px solid var(--border); border-radius: 16px;
  font-size: 12px; color: var(--muted);
  box-shadow: 0 4px 16px rgba(7,17,31,0.04);
}
.trust-item strong { display: block; color: var(--text); font-size: 13px; margin-bottom: 2px; font-weight: 700; }

/* ── DASHBOARD CARD ── */
.dashboard-card {
  background: rgba(255,255,255,.88); border: 1px solid rgba(219,229,239,0.94);
  border-radius: 28px; padding: 24px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.dashboard-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(43,180,243,.07), transparent 44%);
  pointer-events: none;
}
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; position: relative; z-index: 1; gap: 8px; }
.badge { font-size: 11px; font-weight: 800; color: var(--success); background: #ecfdf5; padding: 5px 10px; border-radius: 999px; border: 1px solid #bbf7d0; white-space: nowrap; }
.mini-label { color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }

.metric {
  padding: 20px; border-radius: 20px;
  background: linear-gradient(135deg, #06111d, #0b3558 70%, #0f5a8a);
  color: white; margin-bottom: 12px; position: relative; z-index: 1; overflow: hidden;
}
.metric::after { content: ""; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px; border-radius: 999px; background: rgba(255,255,255,.08); }
.metric span { font-size: 11px; opacity: .72; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.metric h3 { margin: 4px 0 0; font-size: 22px; letter-spacing: -0.04em; }

.process-list { display: grid; gap: 8px; position: relative; z-index: 1; }
.process-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-radius: 14px; background: rgba(238,244,250,.88); border: 1px solid rgba(219,229,239,.86); gap: 8px; }
.process-item strong { font-size: 12px; }
.process-item small  { color: var(--muted); font-weight: 600; font-size: 11px; white-space: nowrap; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.70); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; overflow: hidden;
  scrollbar-width: none;
}
.trust-strip-inner::-webkit-scrollbar { display: none; }

.trust-badge {
  display: flex; align-items: center; gap: 8px; padding: 16px 22px;
  font-size: 12px; font-weight: 700; color: var(--primary);
  border-right: 1px solid var(--border); white-space: nowrap; flex-shrink: 0;
}
.trust-badge:last-child { border-right: none; }
.trust-badge-icon { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; font-size: 12px; flex-shrink: 0; }
.trust-badge-icon.green { background: #dcfce7; color: #16a34a; }
.trust-badge-icon.blue  { background: var(--accent-soft); color: var(--primary-2); }
.trust-badge-icon.slate { background: #f1f5f9; color: #475569; }

/* ============================================================
   SECTIONS — BASE
   ============================================================ */
section { padding: 72px 0; }
.section-head { max-width: 740px; margin-bottom: 28px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-kicker { color: var(--primary-2); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; display: block; }
h2 { margin: 8px 0 10px; font-size: clamp(26px, 3.5vw, 46px); line-height: 1.04; letter-spacing: -0.055em; }
.section-head p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.65; }

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

/* ── FEATURE CARD ── */
.feature-card {
  background: rgba(255,255,255,.94); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature-card:hover { box-shadow: var(--shadow); border-color: rgba(43,180,243,.22); }
/* transform removido — GSAP magnetic hover controla transform em #services. Outras seções não têm magnetic. */
#compliance .feature-card:hover,
#operations .feature-card:hover,
#industries .feature-card:hover,
#risk .feature-card:hover,
#verification .feature-card:hover { transform: translateY(-3px); }
.feature-card h3 { margin: 0 0 8px; font-size: 17px; letter-spacing: -0.03em; line-height: 1.25; }
.feature-card p  { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent-soft); color: var(--primary-2);
  display: grid; place-items: center; font-weight: 900;
  margin-bottom: 14px; border: 1px solid rgba(43,180,243,.16); font-size: 13px;
}
.icon.check { background: #dcfce7; color: #15803d; border-color: #bbf7d0; }
.icon.cross  { background: #fff1f2; color: #be123c; border-color: #fecdd3; }

/* ============================================================
   DARK SECTION
   ============================================================ */
.dark-section {
  background:
    radial-gradient(circle at 88% 0%, rgba(43,180,243,.16), transparent 36%),
    linear-gradient(135deg, #06111d, #071827 52%, #0b3558);
  color: white; border-radius: 36px; padding: 52px;
  overflow: hidden; position: relative; box-shadow: var(--shadow);
}
.dark-section::after {
  content: ""; position: absolute; right: -80px; top: -100px;
  width: 300px; height: 300px; border-radius: 999px;
  background: rgba(43,180,243,.10); pointer-events: none;
}
.dark-section p              { color: #a8bfd4; }
.dark-section h2             { color: white; }
.dark-section .section-kicker { color: #7dd8ff; }
.dark-section .feature-card {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.10);
  color: white; box-shadow: none;
}
.dark-section .feature-card:hover { background: rgba(255,255,255,.09); border-color: rgba(43,180,243,.28); }
.dark-section .feature-card p { color: #a8bfd4; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { display: grid; gap: 12px; position: relative; }
/* --line-height é animada pelo GSAP via scrub. Pseudo-element usa a var. */
.timeline::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 22px;
  width: 2px;
  height: var(--line-height, 0%);
  background: linear-gradient(180deg, var(--accent), var(--primary-2));
  border-radius: 2px;
  transition: none;
  z-index: 0;
}
.timeline-item { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: start; }
.step-num {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, #fff, #eef7ff);
  color: var(--primary); display: grid; place-items: center;
  font-weight: 900; box-shadow: var(--shadow-soft);
  border: 1px solid var(--border); font-size: 14px; flex-shrink: 0;
}
.timeline-content { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 18px; box-shadow: var(--shadow-soft); }
.timeline-content h3 { margin: 0 0 5px; font-size: 16px; letter-spacing: -0.03em; }
.timeline-content p  { margin: 0; color: var(--muted); font-size: 13px; }

/* ============================================================
   VERIFICATION / COMPANY
   ============================================================ */
.company-box,
.verification-panel {
  background: rgba(255,255,255,.96); border: 1px solid var(--border);
  border-radius: 28px; padding: 28px; box-shadow: var(--shadow);
}
.verification-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: start; }
.verification-list { display: grid; gap: 0; }
.verification-item { display: grid; grid-template-columns: 180px 1fr; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.verification-item:last-child { border-bottom: 0; }
.verification-item strong { color: var(--primary); font-size: 13px; }
.verification-item span   { color: var(--muted); font-size: 13px; line-height: 1.5; }
.verification-item a      { color: var(--primary-2); font-weight: 600; }

.doc-list { display: grid; gap: 8px; margin-top: 14px; }
.doc-pill {
  display: flex; align-items: center; gap: 9px; padding: 11px 13px;
  border: 1px solid var(--border); border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff, var(--surface-2));
  font-weight: 700; color: var(--primary); font-size: 12px;
}
.doc-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

.company-row { display: grid; grid-template-columns: 150px 1fr; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.company-row:last-child { border-bottom: 0; }
.company-row strong { color: var(--primary); font-size: 13px; }
.company-row span   { color: var(--muted); font-size: 13px; }
.company-row a      { color: var(--primary-2); font-weight: 600; }

/* ============================================================
   BUSINESS STRUCTURE
   ============================================================ */
.structure-block {
  background: rgba(255,255,255,0.96); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.structure-block::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2), var(--accent));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform-origin: left center;
  transform: scaleX(var(--line-scaleX, 1)); /* animado pelo GSAP de 0→1 */
}
.structure-header { max-width: 700px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.structure-header h3 { font-size: clamp(18px, 2.2vw, 26px); letter-spacing: -0.04em; margin: 8px 0; line-height: 1.25; }
.structure-header p  { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.6; }

.structure-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
}
.structure-card { display: flex; align-items: flex-start; gap: 12px; padding: 20px; background: #fafcff; transition: background .18s; }
.structure-card:hover { background: white; }
.structure-card strong { display: block; font-size: 13px; color: var(--primary); margin-bottom: 5px; letter-spacing: -0.02em; }
.structure-card p      { margin: 0; font-size: 12px; color: var(--muted); line-height: 1.55; }
.sc-icon { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.sc-green { background: #dcfce7; color: #15803d; }

/* ============================================================
   LEGAL LINKS
   ============================================================ */
.legal-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; }
.legal-link {
  padding: 14px 10px; background: white; border: 1px solid var(--border);
  border-radius: 14px; font-weight: 800; font-size: 12px;
  color: var(--primary); text-align: center; box-shadow: var(--shadow-soft);
  transition: all .22s ease;
}
.legal-link:hover { transform: translateY(-3px); border-color: rgba(43,180,243,.30); box-shadow: var(--shadow); color: var(--primary-2); }

/* ============================================================
   PROJECT CARDS
   ============================================================ */
.project-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 16px; }
.project-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft);
  transition: transform .28s ease, box-shadow .28s ease;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(7,17,31,0.10); border-color: rgba(43,180,243,.20); }

/* ── TOUCH: disable hover lift on touch devices ── */
@media (hover: none) {
  .project-card:hover { transform: none; box-shadow: var(--shadow-soft); }
  #compliance .feature-card:hover,
  #operations .feature-card:hover,
  #industries .feature-card:hover,
  #risk .feature-card:hover,
  #verification .feature-card:hover { transform: none; }
  .btn-primary:hover  { transform: none; filter: none; }
  .btn-secondary:hover { transform: none; box-shadow: none; }
  .legal-link:hover { transform: none; }
  .feature-card:hover { transform: none; }
}

/* ============================================================
   GLOBAL NETWORK SECTION — Minimalista, institucional
   ============================================================ */
.network-block {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.network-header {
  max-width: 720px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.network-header h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: -0.04em;
  margin: 8px 0;
  line-height: 1.25;
}
.network-header p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.65;
}

.network-list {
  display: grid;
  gap: 12px;
}

/* ─── BARRA DE REGIÕES (institucional) ─────────────────── */
.network-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 26px;
}
.network-region {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: white;
  transition: background .22s ease;
}
.network-region:hover { background: #f8fbff; }

.network-region-code {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--primary-2);
  text-transform: uppercase;
}
.network-region-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.network-region-detail {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 2px;
}

.network-item {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(43,180,243,0.04), transparent 50%),
    linear-gradient(180deg, #fbfaf7 0%, #f7f5ef 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition: border-color .35s ease;
}
.network-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(7,17,31,0.025) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
  opacity: 0.6;
}
.network-item:hover { border-color: rgba(43,180,243,.22); }

/* COLAGEM EDITORIAL */
.network-photos {
  position: relative;
  width: 420px;
  height: 380px;
  flex-shrink: 0;
}

/* Número decorativo "01" gigante outline */
.network-deco-num {
  position: absolute;
  top: -10px;
  left: -8px;
  font-size: 140px;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(7,24,39,0.06);  /* fallback para browsers sem text-stroke */
  -webkit-text-stroke: 1.5px rgba(7,24,39,0.07);
  font-family: 'Inter', sans-serif;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
@supports (-webkit-text-stroke: 1px black) {
  .network-deco-num { color: transparent; }
}

/* Tag de localizações */
.network-deco-tag {
  position: absolute;
  bottom: 10px;
  left: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--muted);
  z-index: 0;
  white-space: nowrap;
}
.network-deco-tag::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--muted);
  vertical-align: middle;
  margin-right: 8px;
  opacity: 0.5;
}

/* Foto base — frame de papel */
.network-photo {
  position: absolute;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #eef4fa;
  background-origin: content-box;
  padding: 8px 8px 24px;
  background-clip: content-box;
  border-radius: 2px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 14px 30px rgba(7,17,31,0.18),
    0 4px 12px rgba(7,17,31,0.10);
  background-color: #fafaf7;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, z-index 0s linear .35s;
  cursor: pointer;
}
.network-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7,17,31,0.06) 100%);
  pointer-events: none;
}

.network-photo-tag {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #6b6f76;
  z-index: 2;
  font-family: 'Inter', sans-serif;
}

/* FOTO 1 — HERO dominante, esquerda, tilt forte */
.network-photo--1 {
  width: 230px;
  height: 285px;
  top: 10px;
  left: 0;
  transform: rotate(-7deg);
  z-index: 1;
}
/* FOTO 2 — middle, formato quadrado, suporte */
.network-photo--2 {
  width: 165px;
  height: 165px;
  top: 175px;
  left: 130px;
  transform: rotate(5deg);
  z-index: 2;
}
/* FOTO 3 — accent, direita, vertical, tilt grande */
.network-photo--3 {
  width: 160px;
  height: 215px;
  top: 55px;
  right: 0;
  transform: rotate(9deg);
  z-index: 3;
}

/* Hover individual — foto vem pra frente via z-index. Transform via GSAP após animação. */
.network-photo:hover {
  z-index: 10 !important;
  transition: box-shadow .35s ease, z-index 0s linear;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 28px 48px rgba(7,17,31,0.28),
    0 8px 16px rgba(7,17,31,0.14);
}
/* transform comentado — GSAP define rotation final e CSS sobrescreveria
.network-photo--1:hover { transform: rotate(-2deg) scale(1.05) translateY(-6px); }
.network-photo--2:hover { transform: rotate(0deg) scale(1.05) translateY(-6px); }
.network-photo--3:hover { transform: rotate(3deg) scale(1.05) translateY(-6px); }
.network-item:hover .network-photo--1 { transform: rotate(-8deg) translate(-2px, -3px); }
.network-item:hover .network-photo--2 { transform: rotate(6deg) translate(0, -3px); }
.network-item:hover .network-photo--3 { transform: rotate(10deg) translate(2px, -3px); }
*/

/* Info side */
.network-info { min-width: 0; position: relative; z-index: 2; }

/* Linha de costura editorial entre collage e texto */
.network-info::before {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--border));
  margin-bottom: 16px;
}

.network-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.network-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--primary-2);
  margin-right: 10px;
}

.network-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
  line-height: 1.1;
}
.network-handle {
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0;
}

.network-role {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.network-desc {
  margin: 0 0 20px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
}

.network-btn {
  font-size: 11px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.network-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #4a5563;
}
.network-disclaimer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #4a5563;
}
.network-disclaimer strong {
  color: var(--primary);
  font-weight: 700;
}

/* ============================================================
   MOBILE — Network Section
   Substitui colagem absoluta por stack vertical com tilt
   ============================================================ */
@media (max-width: 900px) {
  .network-regions { grid-template-columns: 1fr; }
  .network-region { padding: 16px 18px; }
  .network-item {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 20px;
  }

  /* Stack vertical com leve sobreposição */
  .network-photos {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
  }
  .network-deco-num {
    position: absolute;
    top: -16px; left: 4px;
    font-size: 88px;
    z-index: 0;
  }
  .network-deco-tag {
    position: relative;
    bottom: auto; left: auto;
    text-align: center;
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }
  .network-deco-tag::before { display: none; }

  /* Reset todas as fotos pra static no mobile */
  .network-photo {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 92% !important;
    max-width: 320px;
    height: auto !important;
    aspect-ratio: 4 / 5;
  }
  .network-photo--1 { transform: rotate(-3deg); align-self: flex-start; }
  .network-photo--2 { transform: rotate(2deg); align-self: center; aspect-ratio: 1 / 1; max-width: 280px; }
  .network-photo--3 { transform: rotate(4deg); align-self: flex-end; }

  /* Hover lift desabilitado em touch */
  .network-photo:hover { transform: none; }
  .network-photo--1:hover { transform: rotate(-3deg); }
  .network-photo--2:hover { transform: rotate(2deg); }
  .network-photo--3:hover { transform: rotate(4deg); }

  .network-info::before { display: none; }
  .network-name { font-size: 22px; }
  .network-desc { max-width: 100%; }
}

@media (max-width: 700px) {
  .network-block { padding: 22px 16px; border-radius: 20px; }
  .network-item { padding: 20px 16px; gap: 22px; }
  .network-photos { max-width: 100%; gap: 12px; }
  .network-deco-num { font-size: 72px; }
  .network-photo { padding: 6px 6px 18px; }
  .network-photo-tag { font-size: 8px; bottom: 3px; }
  .network-btn { width: 100%; justify-content: center; min-height: 44px; }
  .network-name { font-size: 20px; }
  .network-photo--2 { max-width: 240px; }
}

@media (max-width: 400px) {
  .network-block { padding: 18px 12px; }
  .network-item { padding: 16px 12px; gap: 18px; }
  .network-deco-num { font-size: 60px; top: -10px; }
  .network-photo { padding: 5px 5px 14px; }
  .network-photo--2 { max-width: 200px; }
  .network-name { font-size: 18px; }
  .network-eyebrow { font-size: 9px; letter-spacing: 0.14em; }
}

/* ============================================================
   PROJECT IMAGES — REFORÇADO COM !important
   Garante que nenhum CSS antigo em cache possa sobrescrever.
   ============================================================ */
.project-image-wrapper {
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 220px !important;
  max-height: 220px !important;
  min-height: 220px !important;
  border-radius: 16px 16px 0 0 !important;
  background-color: #eef4fa !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  display: block !important;
}
.project-image-wrapper::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
  background: rgba(7,17,31,0.20) !important;
  pointer-events: none !important;
  transition: background .28s ease !important;
  z-index: 1 !important;
}
.project-card:hover .project-image-wrapper::after { background: rgba(7,17,31,0.08) !important; }

/* Imagem fallback — escondida, mantém alt text para SEO */
.project-image {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  top: 0 !important;
  left: 0 !important;
}

.project-image-placeholder {
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
  background: linear-gradient(135deg, #eef4fa, #dbe9f7) !important;
  display: none !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.project-image-placeholder svg { opacity: 0.4; }

.project-body { padding: 18px; }
.project-tag  { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary-2); margin-bottom: 6px; }
.project-body h3 { margin: 0 0 7px; font-size: 16px; letter-spacing: -0.03em; }
.project-body p  { margin: 0 0 14px; color: var(--muted); font-size: 12px; line-height: 1.55; }

.ads-proof-card {
  background: linear-gradient(135deg, #f0f7ff, #e5f3ff); border: 1px solid #bfdbfe;
  border-radius: var(--radius); padding: 24px;
  display: flex; align-items: flex-start; gap: 18px;
}
.ads-proof-body { flex: 1; }
.ads-proof-body strong { display: block; font-size: 15px; color: var(--primary); margin-bottom: 7px; letter-spacing: -0.02em; }
.ads-proof-body p      { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── OPS NOTE ── */
.ops-proof-note {
  display: flex; align-items: flex-start; gap: 12px; margin-top: 22px;
  padding: 16px 20px; background: var(--accent-soft);
  border: 1px solid rgba(43,180,243,0.22); border-radius: 14px; color: var(--primary-2);
}
.ops-proof-note p { margin: 0; font-size: 13px; font-weight: 600; line-height: 1.6; }

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.cta {
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(43,180,243,.09), transparent 36%), white;
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 52px 24px; box-shadow: var(--shadow);
}
.cta h2  { max-width: 720px; margin-left: auto; margin-right: auto; }
.cta > p { color: var(--muted); max-width: 600px; margin: 0 auto 22px; font-size: 15px; }

.contact-form { max-width: 680px; margin: 18px auto 0; display: grid; gap: 12px; text-align: left; }
.form-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  border: 1.5px solid var(--border); font-family: inherit;
  font-size: 16px; color: var(--text); background: #fff; /* 16px previne zoom iOS */
  outline: none; transition: border-color .2s, box-shadow .2s;
  appearance: none; -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23627083' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--primary-2); box-shadow: 0 0 0 3px rgba(43,180,243,0.12); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9aabb8; }
.contact-form textarea { resize: vertical; min-height: 100px; }

.form-note { font-size: 11px; color: var(--muted); margin: 2px 0 0 !important; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: radial-gradient(circle at 18% 0%, rgba(43,180,243,.10), transparent 34%), #06111d;
  color: white; padding: 52px 0 24px; margin-top: 64px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr .9fr; gap: 28px; }
footer p, footer a { color: #9fb4c5; font-size: 13px; line-height: 1.7; }
footer h4 { margin: 0 0 12px; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
footer a:hover { color: var(--accent); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }

.footer-phone {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 10px;
  padding: 9px 14px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 999px;
  font-size: 12px; font-weight: 700; color: #e2eaf2 !important; transition: background .18s;
}
.footer-phone:hover { background: rgba(255,255,255,0.12) !important; color: white !important; }

.footer-disclaimer { margin-top: 28px; padding: 18px 22px; border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; background: rgba(255,255,255,0.04); }
.footer-disclaimer p { margin: 0; color: #7a94a8; font-size: 12px; line-height: 1.65; }
.footer-disclaimer strong { color: #aec3d2; }

.footer-bottom {
  margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.10);
  color: #607585; font-size: 11px; display: flex;
  justify-content: space-between; gap: 12px; flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .container { width: calc(100% - 28px); }

  /* Hero */
  .hero { padding: 56px 0 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero p { font-size: 15px; max-width: 100%; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .trust-row .trust-item:last-child { grid-column: 1 / -1; }

  /* Dashboard card em mobile */
  .dashboard-card { padding: 20px; }
  .metric h3 { font-size: 20px; }

  /* Trust strip */
  .trust-strip-inner { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; }
  .trust-badge { padding: 13px 18px; }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav { height: 66px; }
  header.is-scrolled .nav { height: 56px; }
  .mobile-menu { top: 66px; }

  /* Grids */
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .grid-2 { grid-template-columns: 1fr; }

  /* Sections */
  section { padding: 48px 0; }
  .section-head p { font-size: 14px; }

  /* Dark section */
  .dark-section { padding: 28px 20px; border-radius: 24px; }

  /* Structure block */
  .structure-block { padding: 24px 20px; border-radius: 22px; }
  .structure-grid  { grid-template-columns: 1fr; }

  /* Verification */
  .verification-grid { grid-template-columns: 1fr; }
  .verification-item { grid-template-columns: 1fr; gap: 3px; }
  .verification-item strong { color: var(--primary-2); }

  /* Company */
  .company-row { grid-template-columns: 1fr; gap: 3px; }
  .company-row strong { color: var(--primary-2); font-size: 12px; }

  /* Projects */
  .project-grid { grid-template-columns: 1fr 1fr; }
  .ads-proof-card { flex-direction: column; }

  /* Legal */
  .legal-grid { grid-template-columns: repeat(3, 1fr); }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  .container { width: calc(100% - 24px); }

  /* Hero */
  .hero { padding: 44px 0 36px; }
  h1 { font-size: clamp(28px, 7vw, 36px); margin: 14px 0 13px; line-height: 1.05; }
  .hero p { font-size: 14px; margin-bottom: 20px; }
  .hero-actions { flex-direction: column; gap: 8px; }
  .hero-actions .btn { width: 100%; padding: 14px; font-size: 14px; min-height: 48px; }
  .trust-row { grid-template-columns: 1fr; }

  /* Eyebrow */
  .eyebrow { font-size: 9px; padding: 6px 10px; }

  /* Grids */
  .grid-3 { grid-template-columns: 1fr; gap: 10px; }
  .project-grid { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Sections */
  section { padding: 40px 0; }
  h2 { font-size: clamp(22px, 6vw, 30px); }
  .section-head { margin-bottom: 20px; }

  /* Dashboard card */
  .dashboard-card { padding: 16px; border-radius: 22px; }
  .metric { padding: 16px; border-radius: 16px; }
  .metric h3 { font-size: 18px; }
  .process-item { padding: 10px 12px; }
  .process-item strong { font-size: 11px; }

  /* Feature cards */
  .feature-card { padding: 18px; }
  .feature-card h3 { font-size: 15px; }

  /* Dark section */
  .dark-section { padding: 24px 16px; border-radius: 20px; }

  /* Structure block */
  .structure-block { padding: 20px 16px; border-radius: 18px; }
  .structure-header h3 { font-size: 17px; }
  .structure-card { padding: 16px; gap: 10px; }

  /* CTA */
  .cta { padding: 36px 16px; border-radius: 22px; }
  .cta h2 { font-size: clamp(20px, 6vw, 26px); }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { font-size: 16px; min-height: 48px; } /* garantia iOS */
  .contact-form textarea { min-height: 100px; } /* override para textarea */

  /* Buttons — touch targets ≥ 44px */
  .btn { min-height: 44px; padding: 12px 22px; }

  /* Verification / company */
  .company-box,
  .verification-panel { padding: 20px; border-radius: 22px; }

  /* Timeline */
  .timeline-item { grid-template-columns: 40px 1fr; gap: 10px; }
  .step-num { width: 38px; height: 38px; border-radius: 12px; font-size: 13px; }
  .timeline-content { padding: 14px; border-radius: 16px; }

  /* Ads proof */
  .ads-proof-card { padding: 18px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  footer { padding: 40px 0 20px; margin-top: 48px; }

  /* Trust strip */
  .trust-badge { padding: 12px 14px; font-size: 11px; }

  /* Legal grid — pills com texto longo */
  .legal-link { padding: 12px 8px; font-size: 11px; min-height: 44px; display: flex; align-items: center; justify-content: center; }

  /* Project card View Project button */
  .project-body .btn-secondary { min-height: 40px; padding: 10px 16px; }
}

/* ============================================================
   RESPONSIVE — PEQUENO (≤ 375px)
   ============================================================ */
@media (max-width: 375px) {
  .container { width: calc(100% - 20px); }
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-link { font-size: 12px; }
  .trust-row { grid-template-columns: 1fr; }
  .card-top { flex-direction: column; gap: 6px; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 36px 0 32px; }
  section { padding: 36px 0; }
  .feature-card { padding: 16px; }
}