:root {
  --bg: #03070d;
  --bg-soft: #07111d;
  --panel: rgba(9, 20, 34, 0.78);
  --panel-strong: rgba(12, 30, 48, 0.92);
  --line: rgba(113, 198, 255, 0.18);
  --line-strong: rgba(113, 198, 255, 0.38);
  --text: #f3f8ff;
  --muted: #99a9b9;
  --faint: #617286;
  --cyan: #4dc7ff;
  --cyan-soft: rgba(77, 199, 255, 0.15);
  --gold: #f3b64a;
  --gold-soft: rgba(243, 182, 74, 0.16);
  --green: #3cffb5;
  --danger: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(48, 155, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(243, 182, 74, 0.10), transparent 24rem),
    linear-gradient(180deg, #020409 0%, #06101b 42%, #03070d 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(77, 199, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 199, 255, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  z-index: -1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.65; }
strong { color: var(--text); }

.site-shell { min-height: 100vh; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 850; letter-spacing: -0.04em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(77, 199, 255, 0.16), rgba(243, 182, 74, 0.08));
  color: var(--cyan);
  font-size: 12px;
}
.brand-text { 
  font-size: 18px;
  font-family: "Exo 2", sans-serif;
  font-weight: 800; /* Pesado, dá destaque */
  font-style: italic; /* Opcional: deixa itálico */
  letter-spacing: 0.5px; /* Espaçamento entre letras */
  color: var(--text); /* Garante que fique na cor principal */
}
.nav-links { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 13px; font-weight: 650; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 10px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  color: #03101b;
  background: linear-gradient(90deg, var(--cyan), #9ee6ff);
  box-shadow: 0 0 34px rgba(77, 199, 255, 0.24);
}
.button-ghost { border-color: var(--line-strong); color: var(--text); background: rgba(255, 255, 255, 0.03); }
.button-large { min-height: 50px; padding: 0 22px; font-size: 14px; }
.button-submit { width: 100%; min-height: 56px; font-size: 15px; margin-top: 6px; }

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}
.section-grid {
  width: min(1400px, calc(100% - 36px));
  margin: 0 auto;
}
.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  grid-template-columns: 0.96fr 1fr;
  gap: 48px;
  padding: 84px 0 86px;
}
.hero-visual {
  position: absolute;
  inset: 0 auto 0 36%;
  width: 64vw;
  min-width: 760px;
  opacity: 0.68;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 80%, transparent 100%);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 32%, rgba(3, 7, 13, 0.74) 100%);
}
.scanline {
  position: absolute;
  inset: 16% 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 18px var(--cyan);
  opacity: .7;
}
.hero-copy { position: relative; z-index: 2; max-width: 720px; }
.eyebrow, .section-kicker {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1, .section h2 {
  margin: 14px 0 18px;
  font-size: clamp(46px, 7vw, 94px);
  line-height: 0.91;
  letter-spacing: -0.08em;
  text-wrap: balance;
}
.section h2 { font-size: clamp(34px, 4.5vw, 64px); line-height: .96; }
.hero-lede { max-width: 650px; font-size: 19px; color: #c7d3df; }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
  max-width: 700px;
}
.hero-metrics div, .risk-cards article, .flow-card, .product-card, .pricing-stack div, .engagement-grid article, .advantage-list div, .ask-grid article, .support-logos div, .lead-form {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
}
.hero-metrics div { padding: 18px 18px 16px; }
.hero-metrics strong { display: block; font-size: 34px; letter-spacing: -0.06em; color: var(--gold); }
.hero-metrics span { display: block; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.split { display: grid; grid-template-columns: 1.08fr .92fr; gap: 52px; align-items: start; }
.align-end { align-items: end; }
.copy-stack { display: grid; gap: 10px; }
.copy-stack p, .split > p, .section-lede { font-size: 18px; margin-top: 0; }
.risk-cards, .product-grid, .engagement-grid, .ask-grid, .support-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.risk-cards article, .engagement-grid article, .ask-grid article { padding: 26px; }
.icon { font-size: 28px; color: var(--gold); }
h3 { margin: 14px 0 10px; font-size: 20px; letter-spacing: -0.04em; }

.platform, .advantage {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 42px;
  align-items: center;
}
.media-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  min-height: 460px;
}
.media-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 62% 42%, transparent, rgba(3,7,13,.88) 78%);
}
.media-panel img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; opacity: .86; }
.infrastructure-media::after { background: linear-gradient(90deg, rgba(3,7,13,.2), rgba(3,7,13,.86)); }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 15px; }
.check-list li { color: var(--muted); line-height: 1.55; padding-left: 28px; position: relative; }
.check-list li::before { content: "✦"; color: var(--cyan); position: absolute; left: 0; top: 0; }

.how-it-works h2 { max-width: 820px; }
.flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 36px;
}
.flow-card { padding: 24px; min-height: 212px; }
.flow-card span, .ask-grid span { color: var(--cyan); font-weight: 900; font-size: 12px; letter-spacing: .12em; }
.flow-arrow { display: grid; place-items: center; color: var(--cyan); font-size: 22px; opacity: .72; }

.product-card { padding: 30px; min-height: 300px; position: relative; overflow: hidden; }
.product-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 180px;
  background: radial-gradient(circle, var(--cyan-soft), transparent 62%);
}
.product-card.premium::before { background: radial-gradient(circle, rgba(243, 182, 74, .2), transparent 62%); }
.product-card.advanced::before { background: radial-gradient(circle, rgba(60, 255, 181, .15), transparent 62%); }
.product-topline span { display: block; color: var(--text); font-size: 28px; font-weight: 950; letter-spacing: -0.07em; }
.product-topline small { display: block; color: var(--cyan); margin-top: 5px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 850; }
.product-card p { margin-top: 60px; }

.business { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pricing-stack { display: grid; gap: 12px; }
.pricing-stack div, .advantage-list div { padding: 20px; }
.pricing-stack strong, .advantage-list strong { display: block; margin-bottom: 8px; color: var(--text); }
.pricing-stack span, .advantage-list span { color: var(--muted); line-height: 1.55; }

.traction {
  padding: 80px 40px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(120deg, rgba(77,199,255,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
}
.traction h2 { max-width: 900px; }
.section-lede { max-width: 920px; }
.status-badge {
  display: inline-flex;
  padding: 7px 9px;
  border: 1px solid rgba(243, 182, 74, 0.36);
  background: var(--gold-soft);
  color: #ffd98c;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-weight: 900;
}
.engagement-grid h3 { font-size: 24px; }
.disclaimer { margin: 24px 0 0; color: var(--faint); font-size: 12px; }

.advantage-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.ask-grid article { min-height: 248px; }
.support { text-align: center; padding-top: 68px; }
.support h2 { max-width: 760px; margin-left: auto; margin-right: auto; }
.support-logos div { padding: 26px 20px; background: rgba(255,255,255,.028); }
.support-logos strong { display: block; font-size: 26px; letter-spacing: -0.06em; }
.support-logos span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; }

.contact-section {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 42px;
  align-items: start;
}
.contact-intro { position: sticky; top: 104px; }
.lead-form { padding: 28px; background: var(--panel-strong); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 8px; margin-bottom: 16px; color: #dce8f4; font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .10em; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(2, 7, 14, 0.74);
  color: var(--text);
  padding: 14px 14px;
  font: inherit;
  font-size: 14px;
  outline: none;
  border-radius: 0;
}
input:focus, select:focus, textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(77,199,255,.12); }
textarea { resize: vertical; }
.consent { display: flex; grid-template-columns: auto 1fr; align-items: start; gap: 10px; text-transform: none; letter-spacing: 0; color: var(--muted); font-weight: 600; font-size: 13px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; }
.form-status { display: none; margin-bottom: 18px; padding: 14px; border: 1px solid var(--line); color: var(--muted); background: rgba(255,255,255,.03); }
.form-status.is-visible { display: block; }
.form-status.is-success { border-color: rgba(60,255,181,.42); color: #bfffe8; }
.form-status.is-error { border-color: rgba(255,107,107,.42); color: #ffc9c9; }

.footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}
.footer div { display: grid; gap: 4px; }
.footer a { color: var(--cyan); font-weight: 800; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero, .split, .platform, .advantage, .contact-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 58px; }
  .hero-visual { inset: 0 0 auto 0; width: 100%; min-width: 0; height: 520px; opacity: .35; }
  .hero-copy { padding-top: 80px; }
  .risk-cards, .product-grid, .engagement-grid, .ask-grid, .support-logos, .advantage-list { grid-template-columns: 1fr; }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); padding: 6px; }
  .contact-intro { position: static; }
}

@media (max-width: 700px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .nav-actions, .hero-actions { width: 100%; }
  .nav-actions .button, .hero-actions .button { flex: 1; }
  .hero h1 { font-size: 52px; }
  .hero-metrics, .form-row { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .traction { padding: 48px 20px; }
  .footer { flex-direction: column; }
}

.support-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.support-logos > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px 24px;
  min-height: 200px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.028);
  gap: 12px;
}

.logo-icon {
  width: 80px;  /* Logo maior */
  height: 80px;
  object-fit: contain; /* Mantém a proporção */
  filter: brightness(0.9) saturate(0.8); /* Opcional: suaviza cores muito fortes */
  transition: transform 0.3s ease;
}

.support-logos > div:hover .logo-icon {
  transform: scale(1.05); /* Efeito sutil ao passar o mouse */
}

.support-logos > div > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.support-logos strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.support-logos span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 200px;
}