:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f7f7ff;
  background: #080b17;
  font-synthesis: none;
}

* { box-sizing: border-box; }
body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(89, 95, 255, .24), transparent 34rem),
    radial-gradient(circle at 90% 12%, rgba(169, 64, 255, .20), transparent 30rem),
    #080b17;
}

main { width: min(940px, calc(100% - 36px)); margin: 0 auto; padding: 30px 0 44px; }
header, footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
header { padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.09); }
header p, footer { color: #aeb4d1; }
.brand { display: flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.brand span {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px;
  background: linear-gradient(135deg, #536dfe, #a13df4); box-shadow: 0 12px 30px rgba(100,72,255,.32);
  font-weight: 900;
}
.brand strong { font-size: 19px; letter-spacing: -.4px; }
.hero { padding: 64px 0 30px; }
.eyebrow { color: #a98bff; font-size: 12px; font-weight: 900; letter-spacing: .16em; }
h1 { max-width: 720px; margin: 14px 0 12px; font-size: clamp(34px, 6vw, 58px); line-height: 1.02; letter-spacing: -.055em; }
.hero p { max-width: 650px; color: #aeb4d1; font-size: 17px; line-height: 1.65; }
.services { display: grid; gap: 14px; margin: 28px 0 52px; }
.service {
  display: grid; grid-template-columns: 14px minmax(0,1fr) auto; align-items: center; gap: 18px;
  padding: 22px; border: 1px solid rgba(153,163,220,.18); border-radius: 18px;
  background: linear-gradient(145deg, rgba(22,28,54,.92), rgba(13,16,34,.94));
  box-shadow: 0 18px 50px rgba(0,0,0,.2);
}
.dot { width: 12px; height: 12px; border-radius: 50%; background: #f5b942; box-shadow: 0 0 18px currentColor; }
.operacional .dot { color: #36d99b; background: #36d99b; }
.indisponivel .dot { color: #ff5d79; background: #ff5d79; }
.service strong, .service small { display: block; }
.service strong { margin-bottom: 6px; font-size: 17px; }
.service small { color: #9199bb; }
.badge { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.07); color: #c9cdef; font-size: 12px; font-weight: 800; text-transform: capitalize; }
footer { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); font-size: 13px; }
button { border: 1px solid rgba(150,130,255,.4); border-radius: 10px; padding: 10px 14px; color: #fff; background: rgba(104,74,255,.18); cursor: pointer; font-weight: 800; }
button:hover { background: rgba(104,74,255,.30); }
@media (max-width: 620px) {
  header p { display: none; }
  .service { grid-template-columns: 12px minmax(0,1fr); }
  .badge { grid-column: 2; justify-self: start; }
  footer { align-items: flex-start; flex-direction: column; }
}
