* { box-sizing: border-box; }
body {
  margin: 0;
  color: #0a1326;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  background: #fff;
}
a { color: inherit; }
.top {
  border-bottom: 1px solid rgba(10,19,38,.12);
  background: #fff;
}
.top-inner,
.wrap {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}
.top-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img { width: 150px; height: auto; display: block; }
.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}
.nav a { text-decoration: none; color: #324052; }
.hero {
  padding: 70px 0 54px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10,19,38,.92), rgba(37,99,235,.82)),
    var(--hero-bg, none) center / cover;
}
.hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.05;
}
.hero p {
  max-width: 780px;
  margin: 0 0 26px;
  font-size: 19px;
  color: rgba(255,255,255,.9);
}
.btn {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 5px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
section { padding: 54px 0; }
h2 { margin: 0 0 18px; font-size: clamp(28px, 4vw, 40px); line-height: 1.15; }
h3 { margin: 0 0 8px; font-size: 20px; }
p { margin: 0 0 16px; color: #4b5664; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 24px;
  border: 1px solid #e8edf4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(10,19,38,.06);
}
.eyebrow {
  margin: 0 0 10px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e8edf4;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-weight: 800;
}
.cta-band {
  color: #fff;
  background: #0a1326;
}
.cta-band p { color: rgba(255,255,255,.82); }
.hero-suporte { --hero-bg: url("bg-hero-suporte-ti.jpg"); }
.hero-helpdesk { --hero-bg: url("bg-contato-consultoria.jpg"); }
.hero-gestao { --hero-bg: url("bg-parceria-contrato.jpg"); }
.hero-redes { --hero-bg: url("bg-risco-servidores.jpg"); }
.hero-backup { --hero-bg: url("bg-experiencia-equipe.jpg"); }
.soft { background: #f7f8f9; }
.list { padding-left: 20px; color: #4b5664; }
.list li { margin-bottom: 8px; }
.faq-item { margin-bottom: 22px; }
.footer {
  padding: 30px 0;
  background: #071121;
  color: rgba(255,255,255,.72);
}
.footer a { color: #fff; }
@media (max-width: 760px) {
  .top-inner { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .nav { flex-wrap: wrap; }
  .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 42px; }
  .hero-suporte { --hero-bg: url("bg-hero-suporte-ti-mobile.jpg"); }
  .hero-helpdesk { --hero-bg: url("bg-contato-consultoria-mobile.jpg"); }
  .hero-gestao { --hero-bg: url("bg-parceria-contrato-mobile.jpg"); }
  .hero-redes { --hero-bg: url("bg-risco-servidores-mobile.jpg"); }
  .hero-backup { --hero-bg: url("bg-experiencia-equipe-mobile.jpg"); }
}
