:root {
  --bg: #f6f8fb;
  --panel: #ffffff;
  --card: #ffffff;
  --accent: #2563eb;
  --accent-2: #0ea5e9;
  --text: #0e1626;
  --muted: #5f6b84;
  --line: #e4e9f1;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.12), transparent 28%), radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.12), transparent 28%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.muted {
  color: var(--muted);
}

.mono {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

.tiny {
  font-size: 12px;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 6px;
}

.subhead {
  color: var(--muted);
  margin: 12px 0 22px;
  font-size: 18px;
}

.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}

.top-bar .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 18px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.12), rgba(14, 165, 233, 0.1));
}

.container,
section {
  scroll-margin-top: 90px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.nav a {
  padding: 6px 8px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: rgba(124, 154, 255, 0.12);
  color: #f5f7ff;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 600;
  border: 1px solid var(--line);
  color: var(--text);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn.small {
  padding: 10px 14px;
  font-size: 13px;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #f8fbff;
  border: none;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.35);
}

.btn.secondary {
  background: rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.2);
}

.btn.secondary:hover {
  background: rgba(14, 165, 233, 0.16);
}

.text-link {
  font-weight: 600;
  color: var(--accent);
}

main {
  margin-top: 90px;
}

.hero {
  padding: 80px 0 40px;
  background: radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.12), transparent 36%), radial-gradient(circle at 90% 10%, rgba(14, 165, 233, 0.12), transparent 32%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0;
  line-height: 1.15;
}

.bullet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.bullet {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #0e1626;
  font-size: 13px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.pill.ghost {
  background: rgba(14, 165, 233, 0.08);
  color: #0e1626;
}

.hero-visual {
  display: grid;
  place-items: center;
  position: relative;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.35;
  animation: float 9s ease-in-out infinite alternate;
}

.orb-a {
  top: 10%;
  left: 10%;
  background: rgba(37, 99, 235, 0.35);
}

.orb-b {
  bottom: 0%;
  right: 0%;
  background: rgba(14, 165, 233, 0.35);
  animation-duration: 11s;
}

.dash-card {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(160deg, #ffffff, #eef3ff);
  border: 1px solid #dce6f5;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.dash-head h3 {
  margin: 2px 0 0;
}

.resolution {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  margin: 10px 0;
  background: #f8fbff;
  box-shadow: var(--shadow);
}

.value-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.value-metrics div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: #ffffff;
}

.status-pill {
  background: rgba(14, 165, 233, 0.12);
  color: #0f5ed7;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #f8fbff;
}

.stat strong {
  font-size: 18px;
}

.timeline {
  margin-top: 14px;
  border-top: 1px dashed var(--line);
  padding-top: 12px;
  display: grid;
  gap: 10px;
}

.mono {
  color: #0e1626;
  font-size: 14px;
}

.icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.icon-perf {
  background: linear-gradient(135deg, #66f0c2, #4ad0f3);
}

.icon-shield {
  background: linear-gradient(135deg, #7c9aff, #b8c8ff);
}

.icon-clock {
  background: linear-gradient(135deg, #f9d976, #f39f86);
}

.section {
  padding: 64px 0;
}

.section.dark {
  background: #eef2f9;
}

.section.highlight {
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.1));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  min-height: 96px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.service-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.service-card ul,
.plan-list,
.checklist,
.proof-card ul,
.info-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.service-card li,
.plan-list li,
.checklist li,
.proof-card li,
.info-list li {
  margin: 8px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  position: relative;
  box-shadow: var(--shadow);
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(124, 154, 255, 0.18);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.plan-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.plan-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-card h3 {
  margin: 0;
  font-size: 22px;
}

.plan-card.recommended {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.18);
  position: relative;
}

.plan-card.recommended::after {
  content: "Recomendado";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.12);
  color: #0f5ed7;
  font-weight: 700;
  font-size: 12px;
}

.footnote {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.diag {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: start;
}

.diag-card {
  border: 1px dashed rgba(37, 99, 235, 0.25);
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.tag {
  margin-top: 12px;
  display: inline-block;
  background: rgba(37, 99, 235, 0.12);
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.checklist li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.proof-grid.wide {
  grid-template-columns: 1.4fr 1.2fr 1fr;
}

.proof-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.mini-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.stat-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.stat-block {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #f6f8fb;
}

.highlight {
  font-size: 22px;
  color: #0f5ed7;
}

.report-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

blockquote {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  background: #f8fbff;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: start;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
}

.contact-form input,
.contact-form select {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #f6f8fb;
  color: var(--text);
  padding: 12px;
  font-size: 14px;
}

.info-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.info-list li {
  list-style: disc;
}

.contact-form.sent::after {
  content: "Recebido. Entraremos em contato.";
  color: var(--accent);
  font-size: 13px;
}

.footer {
  padding: 24px 0;
  background: #e8eef7;
  border-top: 1px solid var(--line);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  z-index: 30;
  display: none;
}

.cookie-content {
  background: #0e1626;
  color: #f8fbff;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.cookie-title {
  margin: 0 0 4px;
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-banner .btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #f8fbff;
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@keyframes float {
  from { transform: translateY(0px) translateX(0px); }
  to { transform: translateY(-12px) translateX(8px); }
}

@media (max-width: 900px) {
  .top-bar .container {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .top-actions {
    width: 100%;
    justify-content: space-between;
  }
  .nav {
    width: 100%;
  }
  .hero {
    padding-top: 40px;
  }
  .proof-grid.wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn {
    width: 100%;
  }
  .hero h1 {
    font-size: 28px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
