/* ============================================================
   BLUESHIELDPRO — Design System
   Visual premium: azul profundo, azul neon, glassmorphism
   ============================================================ */

:root {
  --blue-deep: #0B3D91;
  --blue-neon: #2E8FFF;
  --cyan-neon: #00D4FF;
  --green-ok: #22C55E;
  --bg-0: #060B1A;
  --bg-1: #0A1128;
  --bg-2: #0E1735;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.07);
  --stroke: rgba(146, 180, 255, 0.14);
  --stroke-hover: rgba(46, 143, 255, 0.45);
  --text-1: #F2F6FF;
  --text-2: #A8B6D8;
  --text-3: #6B7BA3;
  --grad-main: linear-gradient(135deg, #2E8FFF 0%, #00D4FF 100%);
  --grad-deep: linear-gradient(135deg, #0B3D91 0%, #2E8FFF 100%);
  --shadow-glow: 0 0 40px rgba(46, 143, 255, 0.25);
  --radius: 18px;
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

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

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--text-1); line-height: 1.2; font-weight: 700; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

::selection { background: rgba(46, 143, 255, 0.4); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: #1c2c55; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-deep); }

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-0);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity .6s ease, visibility .6s ease;
  /* Rede de segurança: some sozinho mesmo se o JS falhar/não carregar (evita site travado no overlay). */
  animation: loaderFailsafe 0s linear 4s forwards;
}
.loader.hidden { opacity: 0; visibility: hidden; }
@keyframes loaderFailsafe { to { opacity: 0; visibility: hidden; } }
.loader-shield {
  width: 64px; height: 64px;
  animation: loaderPulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(46, 143, 255, 0.6));
}
.loader-bar {
  width: 160px; height: 3px; border-radius: 3px;
  background: rgba(255,255,255,0.08); overflow: hidden;
}
.loader-bar::after {
  content: ''; display: block; height: 100%; width: 40%;
  background: var(--grad-main); border-radius: 3px;
  animation: loaderSlide 1.1s ease-in-out infinite;
}
@keyframes loaderPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes loaderSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(400%); } }

/* ============ CURSOR PERSONALIZADO ============ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--cyan-neon); }
.cursor-ring {
  width: 34px; height: 34px; border: 1.5px solid rgba(46, 143, 255, 0.5);
  transition: width .25s, height .25s, border-color .25s, background .25s;
}
.cursor-ring.hovering {
  width: 52px; height: 52px;
  border-color: var(--cyan-neon);
  background: rgba(0, 212, 255, 0.08);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============ BACKGROUND ============ */
.bg-canvas {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
}
.bg-glow {
  position: fixed; z-index: -1; pointer-events: none;
  width: 700px; height: 700px; border-radius: 50%;
  opacity: .35;
  /* Glow feito com gradiente radial (custo zero) em vez de filter: blur(140px),
     que criava uma textura GPU gigante recomposta a cada frame. Visual igual. */
}
.bg-glow-1 { top: -280px; left: -200px; background: radial-gradient(circle, #0B3D91 0%, rgba(11,61,145,0) 70%); }
.bg-glow-2 { bottom: -320px; right: -220px; opacity: .3; background: radial-gradient(circle, #123c7a 0%, rgba(18,60,122,0) 70%); }

/* Grid futurista sutil */
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(146,180,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(146,180,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 40%, transparent 100%);
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-main); z-index: 1001;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.7);
}

/* ============ HEADER ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .35s ease, box-shadow .35s ease;
}
.header.scrolled {
  background: rgba(6, 11, 26, 0.92);
  box-shadow: 0 1px 0 var(--stroke);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--text-1); }
.logo svg { width: 34px; height: 34px; filter: drop-shadow(0 0 10px rgba(46,143,255,.5)); }
.logo span em { font-style: normal; background: var(--grad-main); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 12px; border-radius: 10px; font-size: .86rem; font-weight: 500;
  color: var(--text-2); transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--text-1); background: var(--glass-strong); }
.nav a.active { color: var(--cyan-neon); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 14px; border: none;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  transition: transform .25s cubic-bezier(.2,.9,.3,1.4), box-shadow .3s, background .3s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-primary { background: var(--grad-main); color: #04101f; box-shadow: 0 6px 24px rgba(46,143,255,.35); }
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 34px rgba(0,212,255,.45); }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.btn-primary:hover::after { left: 130%; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06); color: var(--text-1);
  border: 1px solid var(--stroke);
}
.btn-ghost:hover { border-color: var(--stroke-hover); background: var(--glass-strong); transform: translateY(-2px); }
.btn-whats { background: #16A34A; color: #fff; box-shadow: 0 6px 24px rgba(34,197,94,.3); }
.btn-whats:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(34,197,94,.45); }
.btn-sm { padding: 10px 18px; font-size: .84rem; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

.header .btn-cta { margin-left: 8px; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; width: 42px; height: 42px; position: relative; z-index: 1002; }
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text-1);
  margin: 5px auto; border-radius: 2px; transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 1001;
  background: rgba(6, 11, 26, 0.985);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 600;
  color: var(--text-2); padding: 10px 24px; border-radius: 12px;
  transition: color .2s, transform .2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--cyan-neon); }
.mobile-nav .btn { margin-top: 18px; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; padding: 140px 0 80px;
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 100px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--stroke);
  font-size: .8rem; font-weight: 500; color: var(--text-2);
  margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-ok); box-shadow: 0 0 10px var(--green-ok); animation: dotPulse 2s infinite; }
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  letter-spacing: -0.02em; margin-bottom: 22px; font-weight: 800;
}
.grad-text {
  background: var(--grad-main);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.sub { font-size: 1.13rem; max-width: 540px; margin-bottom: 36px; color: var(--text-2); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 28px; margin-top: 48px; flex-wrap: wrap; }
.hero-trust span { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text-3); }
.hero-trust svg { width: 16px; height: 16px; color: var(--green-ok); flex-shrink: 0; }

/* Hero visual — mock dashboard flutuante */
.hero-visual { position: relative; perspective: 1200px; }
.hero-card {
  background: linear-gradient(160deg, rgba(20,32,68,.85), rgba(10,17,40,.9));
  border: 1px solid var(--stroke); border-radius: 22px;
  padding: 26px;
  box-shadow: 0 30px 80px rgba(2, 8, 24, 0.7), inset 0 1px 0 rgba(255,255,255,.06);
  will-change: transform;
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform .5s ease;
  animation: floatCard 7s ease-in-out infinite;
}
.hero-visual:hover .hero-card { transform: rotateY(-3deg) rotateX(2deg); }
@keyframes floatCard { 0%,100% { translate: 0 0; } 50% { translate: 0 -14px; } }
.hero-card-head { display: flex; gap: 7px; margin-bottom: 20px; }
.hero-card-head i { width: 11px; height: 11px; border-radius: 50%; background: #24345f; }
.hero-card-head i:first-child { background: #ff5f57; }
.hero-card-head i:nth-child(2) { background: #febc2e; }
.hero-card-head i:nth-child(3) { background: #28c840; }
.hero-card-row { display: flex; gap: 14px; margin-bottom: 14px; }
.hero-metric {
  flex: 1; background: rgba(255,255,255,.04); border: 1px solid var(--stroke);
  border-radius: 14px; padding: 14px 16px;
}
.hero-metric b { display: block; font-family: var(--font-head); font-size: 1.3rem; color: var(--text-1); }
.hero-metric small { font-size: .72rem; color: var(--text-3); }
.hero-metric .up { color: var(--green-ok); font-size: .72rem; font-weight: 600; }
.hero-chart { display: flex; align-items: flex-end; gap: 8px; height: 90px; padding: 14px; background: rgba(255,255,255,.03); border: 1px solid var(--stroke); border-radius: 14px; }
.hero-chart i {
  flex: 1; border-radius: 4px 4px 0 0;
  background: var(--grad-deep);
  animation: barGrow 1.4s cubic-bezier(.2,.9,.3,1.2) both;
}
.hero-chart i:nth-child(odd) { background: var(--grad-main); }
@keyframes barGrow { from { height: 0 !important; } }
.hero-chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(12, 22, 50, 0.96); border: 1px solid var(--stroke);
  border-radius: 14px; padding: 12px 18px;
  box-shadow: 0 16px 44px rgba(2,8,24,.6);
  font-size: .82rem; color: var(--text-1); font-weight: 600;
}
.hero-chip svg { width: 20px; height: 20px; }
.hero-chip-1 { top: -24px; right: -10px; animation: floatCard 6s ease-in-out infinite reverse; }
.hero-chip-2 { bottom: -20px; left: -26px; animation: floatCard 8s ease-in-out 1s infinite; }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-3); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
}
.scroll-hint .mouse {
  width: 24px; height: 38px; border: 1.5px solid var(--text-3); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
}
.scroll-hint .mouse i { width: 3px; height: 8px; border-radius: 3px; background: var(--cyan-neon); animation: wheel 1.6s infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }

/* ============ SEÇÕES ============ */
.section { padding: 110px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cyan-neon); margin-bottom: 16px;
}
.kicker::before { content: ''; width: 26px; height: 1.5px; background: var(--grad-main); }
.section-head.left .kicker::before { order: -1; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); letter-spacing: -0.02em; margin-bottom: 18px; }
.section-head p { font-size: 1.05rem; color: var(--text-2); }

/* ============ CARDS ============ */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: rgba(16, 25, 54, 0.55); border: 1px solid var(--stroke);
  border-radius: var(--radius); padding: 32px 28px;
  /* backdrop-filter removido: eram dezenas de blurs por página re-amostrando
     o fundo a cada frame (principal causa de scroll/clique travado). Fundo
     semi-opaco dá o mesmo look de "glass" sobre o tema escuro, custo zero. */
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,.55), transparent);
  opacity: 0; transition: opacity .35s;
}
.card:hover { transform: translateY(-8px); border-color: var(--stroke-hover); background: rgba(22, 34, 72, 0.65); box-shadow: 0 22px 54px rgba(2,8,24,.55), var(--shadow-glow); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(11,61,145,.5), rgba(46,143,255,.18));
  border: 1px solid var(--stroke);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: transform .35s, box-shadow .35s;
}
.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); box-shadow: 0 0 24px rgba(46,143,255,.35); }
.card-icon svg { width: 25px; height: 25px; color: var(--cyan-neon); }
.card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.card p { font-size: .92rem; color: var(--text-2); }
.card .card-list { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.card .card-list li { display: flex; align-items: flex-start; gap: 9px; font-size: .88rem; color: var(--text-2); }
.card .card-list svg { width: 15px; height: 15px; color: var(--green-ok); flex-shrink: 0; margin-top: 4px; }
.card .link-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: .86rem; font-weight: 600; color: var(--cyan-neon); }
.card .link-more svg { width: 15px; height: 15px; transition: transform .25s; }
.card:hover .link-more svg { transform: translateX(5px); }

/* ============ NÚMEROS / STATS ============ */
.stats {
  border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(11,61,145,.1), transparent);
}
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; padding: 56px 0; }
.stat { text-align: center; }
.stat b {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem); color: var(--text-1);
  letter-spacing: -0.02em;
}
.stat b .plus { color: var(--cyan-neon); }
.stat small { font-size: .84rem; color: var(--text-3); font-weight: 500; }

/* ============ MARQUEE (tecnologias) ============ */
.marquee { overflow: hidden; position: relative; padding: 28px 0; }
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-0), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg-0), transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.tech-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--stroke);
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--text-1);
  white-space: nowrap; transition: border-color .25s, box-shadow .25s;
}
.tech-pill:hover { border-color: var(--stroke-hover); box-shadow: var(--shadow-glow); }
.tech-pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-main); }

/* ============ PROCESSO / TIMELINE ============ */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.timeline::before {
  content: ''; position: absolute; top: 26px; left: 6%; right: 6%; height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(46,143,255,.5), rgba(46,143,255,.5), transparent);
}
.step { position: relative; text-align: center; padding: 0 8px; }
.step-num {
  width: 52px; height: 52px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--bg-1); border: 1.5px solid var(--stroke-hover);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; color: var(--cyan-neon);
  position: relative; z-index: 1; transition: box-shadow .3s, transform .3s;
}
.step:hover .step-num { box-shadow: 0 0 28px rgba(0,212,255,.45); transform: scale(1.1); }
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: .84rem; color: var(--text-3); }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--glass); border: 1px solid var(--stroke); border-radius: 16px;
  overflow: hidden; transition: border-color .3s, background .3s;
}
.faq-item.open { border-color: var(--stroke-hover); background: var(--glass-strong); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; background: none; border: none; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem; color: var(--text-1);
}
.faq-q svg { width: 18px; height: 18px; color: var(--cyan-neon); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 24px 22px; font-size: .92rem; color: var(--text-2); }

/* ============ FORMULÁRIO ============ */
.form-card {
  background: rgba(16, 25, 54, 0.55); border: 1px solid var(--stroke); border-radius: 24px;
  padding: 44px;
  box-shadow: 0 30px 80px rgba(2,8,24,.5);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .84rem; font-weight: 600; color: var(--text-1); }
.form-field label em { color: var(--cyan-neon); font-style: normal; }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(6, 11, 26, 0.6); border: 1px solid var(--stroke);
  border-radius: 12px; padding: 13px 16px; font-family: inherit; font-size: .93rem;
  color: var(--text-1); transition: border-color .25s, box-shadow .25s;
  width: 100%; appearance: none;
}
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7BA3' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--blue-neon);
  box-shadow: 0 0 0 3px rgba(46,143,255,.18);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-3); }
.form-note { font-size: .78rem; color: var(--text-3); display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.form-note svg { width: 14px; height: 14px; color: var(--green-ok); flex-shrink: 0; }
.form-success {
  display: none; text-align: center; padding: 60px 20px;
}
.form-success.show { display: block; }
.form-success .check-circle {
  width: 76px; height: 76px; margin: 0 auto 24px; border-radius: 50%;
  background: rgba(34,197,94,.12); border: 1.5px solid rgba(34,197,94,.5);
  display: flex; align-items: center; justify-content: center;
  animation: popIn .5s cubic-bezier(.2,.9,.3,1.4) both;
}
.form-success .check-circle svg { width: 36px; height: 36px; color: var(--green-ok); }
@keyframes popIn { from { transform: scale(.4); opacity: 0; } }

/* ============ CTA FINAL ============ */
.cta-banner {
  position: relative; border-radius: 28px; overflow: hidden;
  background: linear-gradient(135deg, #0B3D91 0%, #0d2a63 55%, #071a3e 100%);
  border: 1px solid var(--stroke-hover);
  padding: 72px 56px; text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,212,255,.22), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(46,143,255,.25), transparent 45%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.cta-banner p { max-width: 560px; margin: 0 auto 34px; color: #C4D4F5; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ PORTFOLIO ============ */
.portfolio-card { padding: 0; overflow: hidden; }
.portfolio-thumb {
  height: 210px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-2), #13224a);
  display: flex; align-items: center; justify-content: center;
}
.portfolio-thumb svg { width: 64px; height: 64px; color: rgba(46,143,255,.6); transition: transform .4s; }
.portfolio-card:hover .portfolio-thumb svg { transform: scale(1.15); }
.portfolio-thumb .tag {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 13px; border-radius: 100px; font-size: .72rem; font-weight: 700;
  background: rgba(6,11,26,.85); border: 1px solid var(--stroke); color: var(--cyan-neon);
}
.portfolio-body { padding: 26px; }
.portfolio-body .meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.portfolio-body .meta span {
  font-size: .72rem; padding: 4px 11px; border-radius: 100px;
  background: rgba(46,143,255,.1); border: 1px solid var(--stroke); color: var(--text-2);
}

/* ============ SOBRE / VALORES ============ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-split h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 20px; }
.about-split p + p { margin-top: 16px; }
.values-list { display: flex; flex-direction: column; gap: 16px; }
.value-item {
  display: flex; gap: 18px; padding: 22px; border-radius: 16px;
  background: var(--glass); border: 1px solid var(--stroke);
  transition: border-color .3s, transform .3s;
}
.value-item:hover { border-color: var(--stroke-hover); transform: translateX(8px); }
.value-item .card-icon { width: 46px; height: 46px; margin: 0; flex-shrink: 0; }
.value-item h3 { font-size: 1rem; margin-bottom: 5px; }
.value-item p { font-size: .88rem; }

/* ============ SEGMENTOS ============ */
.segments { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.segment-chip {
  padding: 11px 22px; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--stroke);
  font-size: .88rem; font-weight: 500; color: var(--text-2);
  transition: all .25s;
}
.segment-chip:hover {
  border-color: var(--stroke-hover); color: var(--text-1);
  background: rgba(46,143,255,.1); transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(46,143,255,.2);
}

/* ============ BLOG ============ */
.blog-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.blog-thumb {
  height: 180px; background: linear-gradient(135deg, var(--bg-2), #14264f);
  display: flex; align-items: center; justify-content: center;
}
.blog-thumb svg { width: 48px; height: 48px; color: rgba(46,143,255,.55); }
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-body .blog-meta { font-size: .74rem; color: var(--text-3); margin-bottom: 10px; display: flex; gap: 12px; }
.blog-body .blog-meta b { color: var(--cyan-neon); font-weight: 600; }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-body p { font-size: .88rem; flex: 1; }

/* ============ CONTATO ============ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 26px; border-radius: 18px;
  background: var(--glass); border: 1px solid var(--stroke);
  margin-bottom: 16px; transition: border-color .3s, transform .3s;
}
.contact-card:hover { border-color: var(--stroke-hover); transform: translateY(-4px); }
.contact-card .card-icon { margin: 0; flex-shrink: 0; }
.contact-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p { font-size: .88rem; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--stroke);
  background: linear-gradient(180deg, transparent, rgba(11,61,145,.08));
  padding: 72px 0 0; margin-top: 40px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 52px; }
.footer h4 { font-size: .92rem; margin-bottom: 20px; letter-spacing: .04em; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: .88rem; color: var(--text-3); transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--cyan-neon); padding-left: 5px; }
.footer-about p { font-size: .88rem; color: var(--text-3); margin: 18px 0 24px; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid var(--stroke); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: .8rem; color: var(--text-3);
}
.footer-bottom a { color: var(--text-3); }
.footer-bottom a:hover { color: var(--cyan-neon); }
.footer-legal { display: flex; gap: 20px; }

/* SEO complementar (visível, discreto, semântico) */
.seo-areas { padding: 44px 0; border-top: 1px solid var(--stroke); }
.seo-areas h4 { font-size: .8rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.seo-areas p { font-size: .76rem; color: #4A587E; line-height: 2; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-44px); transition: opacity .8s ease, transform .8s ease; }
.reveal-right { opacity: 0; transform: translateX(44px); transition: opacity .8s ease, transform .8s ease; }
.reveal-left.in, .reveal-right.in { opacity: 1; transform: translateX(0); }
.reveal-zoom { opacity: 0; transform: scale(.92); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.9,.3,1.2); }
.reveal-zoom.in { opacity: 1; transform: scale(1); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; } .d6 { transition-delay: .6s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right, .reveal-zoom { opacity: 1; transform: none; }
}

/* Page hero (páginas internas) */
.page-hero { padding: 170px 0 70px; text-align: center; position: relative; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); letter-spacing: -0.02em; margin-bottom: 18px; }
.page-hero p { max-width: 640px; margin: 0 auto; font-size: 1.08rem; }
.breadcrumbs {
  display: flex; justify-content: center; gap: 8px; align-items: center;
  font-size: .8rem; color: var(--text-3); margin-bottom: 22px;
}
.breadcrumbs a:hover { color: var(--cyan-neon); }
.breadcrumbs svg { width: 12px; height: 12px; }

/* Texto legal / prosa */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.prose h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.prose p, .prose li { font-size: .95rem; color: var(--text-2); margin-bottom: 12px; }
.prose ul { padding-left: 22px; list-style: disc; }
.prose ul li { margin-bottom: 8px; }
.prose strong { color: var(--text-1); }

/* WhatsApp flutuante */
.whats-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 990;
  width: 60px; height: 60px; border-radius: 50%;
  background: #16A34A; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 34px rgba(22,163,74,.5);
  transition: transform .3s cubic-bezier(.2,.9,.3,1.5);
}
.whats-float:hover { transform: scale(1.12) rotate(6deg); }
.whats-float svg { width: 30px; height: 30px; color: #fff; }
.whats-float::before {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid rgba(34,197,94,.5); animation: ripple 2s infinite;
}
@keyframes ripple { 0% { transform: scale(.9); opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }

/* ============ RESPONSIVO ============ */
@media (min-width: 1800px) {
  :root { --container: 1360px; }
  body { font-size: 17px; }
}

@media (max-width: 1080px) {
  .nav { display: none; }
  .header .btn-cta { display: none; }
  .hamburger { display: block; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .timeline::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 70px; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .about-split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 78px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .cta-banner { padding: 52px 26px; }
  .hero { padding-top: 120px; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-chip-1 { right: 4px; top: -16px; }
  .hero-chip-2 { left: 4px; }
  .scroll-hint { display: none; }
  .whats-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}
