
:root {
  --bg: #07162b;
  --bg-2: #0a1c36;
  --bg-3: #0c2342;
  --surface: rgba(16, 35, 67, 0.78);
  --surface-strong: rgba(23, 46, 82, 0.9);
  --border: rgba(117, 166, 255, 0.16);
  --text: #eef4ff;
  --muted: #b7c4dc;
  --primary: #46cfff;
  --primary-2: #66dcff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 26px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: linear-gradient(180deg, #07162b 0%, #061120 100%);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

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

body::before {
  content: "";
  position: fixed;
  top: -10%; left: -10%; width: 140%; height: 140%;
  z-index: -3; pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 170, 255, 0.20), transparent 22%),
    radial-gradient(circle at 80% 25%, rgba(70, 207, 255, 0.16), transparent 24%),
    radial-gradient(circle at 50% 75%, rgba(0, 120, 255, 0.14), transparent 26%);
  filter: blur(30px);
  animation: moveGlow 18s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  top: -10%; left: -10%; width: 140%; height: 140%;
  z-index: -2; pointer-events: none;
  background:
    radial-gradient(circle at 30% 40%, rgba(70, 207, 255, 0.10), transparent 18%),
    radial-gradient(circle at 70% 60%, rgba(0, 180, 255, 0.08), transparent 20%),
    radial-gradient(circle at 60% 15%, rgba(0, 140, 255, 0.07), transparent 18%);
  filter: blur(70px);
  animation: moveGlowSlow 28s ease-in-out infinite alternate;
}

.tech-particles {
  position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden;
}
.tech-particles::before,
.tech-particles::after {
  content: ""; position: absolute; inset: -20%; background-repeat: repeat;
  animation-timing-function: linear; animation-iteration-count: infinite;
}
.tech-particles::before {
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.95) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(70,207,255,0.90) 0 1.2px, transparent 2px),
    radial-gradient(circle, rgba(170,235,255,0.75) 0 0.8px, transparent 1.6px);
  background-size: 180px 180px, 260px 260px, 320px 320px;
  background-position: 0 0, 40px 80px, 120px 30px;
  filter: drop-shadow(0 0 4px rgba(70, 207, 255, 0.35));
  opacity: 0.55;
  animation: particlesDrift 15s linear infinite;
}
.tech-particles::after {
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.85) 0 0.9px, transparent 1.6px),
    radial-gradient(circle, rgba(70,207,255,0.75) 0 1px, transparent 1.8px);
  background-size: 240px 240px, 340px 340px;
  background-position: 60px 20px, 140px 110px;
  filter: drop-shadow(0 0 6px rgba(70, 207, 255, 0.28));
  opacity: 0.35;
  animation: particlesDriftReverse 15s linear infinite;
}

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.site-header, main, .site-footer, .whatsapp-float { position: relative; z-index: 1; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(7, 22, 43, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner {
  min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo { width: 140px; height: auto; object-fit: contain;display: block; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: #dbe8ff; font-size: 15px; font-weight: 600; opacity: 0.9;
  transition: all .25s ease; display: inline-block;
}
.nav a.active { color: #fff; text-shadow: 0 0 14px rgba(255,255,255,0.18); }
.nav a:hover { color: #fff; opacity: 1; transform: translateY(-2px) scale(1.04); text-shadow: 0 0 14px rgba(255,255,255,0.22); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 0 16px; border-radius: 999px; font-weight: 700; transition: all .25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #06203b; box-shadow: 0 10px 30px rgba(70,207,255,.34);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 40px rgba(70,207,255,.5); filter: brightness(1.05); }
.btn-secondary {
  border: 1px solid rgba(115,180,255,.22); color: #eef4ff; background: rgba(255,255,255,.02);
}
.btn-secondary:hover { border-color: rgba(115,180,255,.45); transform: translateY(-2px); }
.header-inner .btn { min-height: 42px; padding: 0 16px; font-size: 14px; }

.hero, .section, .overview, .importance, .cta { padding: 76px 0; }
.hero {
  min-height: calc(100vh - 74px); display: flex; align-items: center; padding-top: 12px; padding-bottom: 20px;
}
.hero-grid, .importance-grid, .two-col {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; padding: 8px 14px; border-radius: 999px;
  background: rgba(70,207,255,.12); color: #85e4ff; border: 1px solid rgba(70,207,255,.18);
  font-size: 13px; font-weight: 700; margin-bottom: 16px;
}
.hero h1, .section-heading h2, .importance h2, .cta h2, .panel h2, .page-hero h1 {
  margin: 0; letter-spacing: -0.04em;
}
.hero h1, .page-hero h1 { font-size: clamp(28px, 3.9vw, 50px); max-width: 560px; line-height: .93; }
.hero p, .section-heading p, .importance p, .panel-kicker, .mini-card p,
.small-card p, .feature-card p, .info-card p, .site-footer p, .site-footer li,
.cta p, .rich-text p, .timeline-text, .stat p, .contact-card p {
  color: var(--muted); line-height: 1.55; font-size: 13px;
}
.hero p, .page-hero p { max-width: 560px; margin: 14px 0 0; }
.hero-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.hero-tags span {
  padding: 7px 12px; border-radius: 999px; border: 1px solid rgba(115,180,255,.16);
  background: rgba(255,255,255,.02); color: #d6e5ff; font-weight: 600; font-size: 12px;
}
.panel, .small-card, .feature-card, .info-card, .cta-box, .stat, .timeline-step, .contact-card, .quote-box {
  background: linear-gradient(180deg, rgba(27,49,87,.92), rgba(15,31,58,.88));
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.panel { border-radius: 24px; padding: 18px; }
.panel-kicker {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: #f1f6ff; margin-bottom: 8px; font-size: 14px;
}
.panel-kicker::before {
  content: ""; width: 10px; height: 10px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 12px rgba(70,207,255,.6);
}
.panel h2 { font-size: clamp(18px, 2vw, 26px); line-height: 1.14; margin-bottom: 12px; font-weight: 700; }
.mini-cards, .info-grid, .cards-3, .bottom-cards, .stats-grid, .timeline-grid, .contact-grid {
  display: grid; gap: 14px;
}
.mini-cards, .info-grid, .timeline-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cards-3, .stats-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.mini-card, .small-card, .feature-card, .info-card, .stat, .timeline-step, .contact-card {
  border-radius: 16px; padding: 14px;
  background: linear-gradient(180deg, rgba(31,55,97,.72), rgba(18,34,63,.82));
  border: 1px solid rgba(123,174,255,.14);
}
.mini-card h3, .small-card h3, .feature-card h3, .info-card h3, .stat h3, .timeline-step h3, .contact-card h3 {
  margin: 0 0 6px; font-size: 15px; line-height: 1.15;
}
.mini-card p { font-size: 14px; }
.bottom-cards { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 14px; }
.section-heading { max-width: 920px; }
.section-heading.center { text-align: center; margin: 0 auto 36px; }
.section-heading h2, .importance h2, .cta h2 { font-size: clamp(36px, 4.5vw, 56px); line-height: 1.02; }
.feature-card a { display: inline-flex; margin-top: 18px; font-weight: 700; color: #fff; }
.bullets { margin: 22px 0 0; padding-left: 20px; }
.bullets li { color: #e7f0ff; margin-bottom: 6px; line-height: 1.7; font-size: 17px; }
.cta-box {
  border-radius: 28px; padding: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.page-hero { padding: 92px 0 52px; }
.page-hero.compact { min-height: auto; }
.rich-text h2 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05; margin: 0 0 14px; letter-spacing: -0.03em; }
.rich-text p + p { margin-top: 14px; }
.stat h3 { font-size: 18px; }
.stat strong { display: block; font-size: 34px; line-height: 1; margin-bottom: 10px; color: #fff; }
.timeline-step { position: relative; }
.timeline-step .step-number {
  width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(70,207,255,.14); color: #85e4ff; font-weight: 800; margin-bottom: 14px;
}
.quote-box { border-radius: 28px; padding: 28px; }
.quote-box p { font-size: 20px; line-height: 1.5; color: #e8f3ff; margin: 0; }
.quote-box span { display: inline-block; margin-top: 14px; color: #9fc4ff; font-weight: 600; }
.contact-grid { grid-template-columns: 0.95fr 1.05fr; }
.contact-card ul { list-style: none; padding: 0; margin: 18px 0 0; }
.contact-card li { margin-bottom: 14px; color: #dbe8ff; }
.form-card {
  background: linear-gradient(180deg, rgba(27,49,87,.92), rgba(15,31,58,.88));
  border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: 24px; padding: 24px;
}
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { color: #dce7ff; font-weight: 600; font-size: 14px; }
input, textarea, select {
  width: 100%; border-radius: 14px; border: 1px solid rgba(115,180,255,.16); background: rgba(255,255,255,.03);
  color: #fff; padding: 14px 14px; font: inherit; outline: none;
}
input:focus, textarea:focus, select:focus { border-color: rgba(70,207,255,.55); box-shadow: 0 0 0 4px rgba(70,207,255,.12); }
textarea { min-height: 140px; resize: vertical; }
.site-footer {
  padding: 40px 0 20px; background: rgba(1,10,22,.52); border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 22x; }
.footer-logo { width: 120px; margin-bottom: 12px; }
.site-footer h4 { margin: 0 0 10px; font-size: 15px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 6px; }
.footer-bottom { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.06); }
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; min-height: 56px; padding: 0 20px; border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #06203b; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(70,207,255,.38);
}

@keyframes moveGlow {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px,20px) scale(1.08); }
  100% { transform: translate(25px,-25px) scale(1); }
}
@keyframes moveGlowSlow {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-20px) scale(1.12); }
  100% { transform: translate(-30px,25px) scale(1); }
}
@keyframes particlesDrift {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-80px,-50px,0); }
}
@keyframes particlesDriftReverse {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(70px,40px,0); }
}

@media (max-width: 1100px) {
  .hero-grid, .importance-grid, .two-col, .footer-grid, .cards-3, .stats-grid, .contact-grid { grid-template-columns: 1fr; }
  .mini-cards, .info-grid, .bottom-cards, .timeline-grid, .form-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { flex-direction: column; align-items: flex-start; }
  .hero { min-height: auto; }
}
@media (max-width: 860px) {
  .header-inner { flex-wrap: wrap; justify-content: center; padding: 14px 0; min-height: auto; }
  .nav { flex-wrap: wrap; justify-content: center; gap: 18px; }
  .hero, .overview, .importance, .cta, .section, .page-hero { padding: 56px 0; }
  .mini-cards, .info-grid, .bottom-cards, .cards-3, .stats-grid, .timeline-grid, .contact-grid, .form-grid { grid-template-columns: 1fr; }
  .hero h1, .section-heading h2, .importance h2, .cta h2, .panel h2, .page-hero h1 { line-height: 1.02; }
  .hero { padding-top: 24px; padding-bottom: 24px; }
  .whatsapp-float { min-height: 48px; padding: 0 16px; }
}

.cta-note {
  margin-top: 12px;
  list-style: none;
  padding: 0;
}

.cta-note li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
  position: relative;
  padding-left: 14px;

  .cta-note {
  margin-top: 12px;
  list-style: none;
  padding: 0;
}

.cta-note li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
  position: relative;
  padding-left: 14px;
}
}

.servicos-page .section-heading h2 {
  max-width: 980px;
}

.servicos-page .cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.servicos-page .feature-card {
  min-height: 100%;
}

.servicos-page .feature-card p {
  font-size: 15px;
  line-height: 1.65;
}

.servicos-page .stat strong {
  display: block;
  font-size: 16px;
  line-height: 1.1;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.whatsapp-float {
  width: 64px;
  min-width: 64px;
  padding: 0;
}

.whatsapp-icon {
  width: 26px;
  height: 26px;
  display: block;
}
