:root{
  --bg:#0B1220;
  --panel:rgba(255,255,255,.06);
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.74);
  --stroke:rgba(234,240,255,.14);

  --primary:#2563EB; /* azul */
  --accent:#F97316;  /* laranja */
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:26px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,"Noto Sans","Helvetica Neue",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}

.badge{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 12px;border-radius:999px;
  background:rgba(255,255,255,.07);
  border:1px solid var(--stroke);
  color:var(--muted);
  font-weight:850;
  backdrop-filter:blur(10px);
}
.badge .dot{width:8px;height:8px;border-radius:99px;background:linear-gradient(90deg,var(--primary),var(--accent));box-shadow:0 0 0 4px rgba(255,255,255,.06)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:14px;
  font-weight:950;border:1px solid transparent;
  cursor:pointer;transition:transform .12s ease,background .12s ease,border-color .12s ease,opacity .12s ease;
}
.btn:active{transform:translateY(1px)}
.btn.primary{background:linear-gradient(90deg,var(--primary),var(--accent));color:#061021;box-shadow:0 16px 50px rgba(37,99,235,.14)}
.btn.ghost{background:rgba(255,255,255,.06);border-color:var(--stroke);color:var(--text)}
.btn.small{padding:10px 12px;border-radius:12px;font-size:14px;font-weight:950}
.btn.full{width:100%}
.hr{height:1px;background:var(--stroke);margin:18px 0}

.header{
  position:sticky;top:0;z-index:30;
  background:rgba(11,18,32,.72);
  border-bottom:1px solid rgba(234,240,255,.08);
  backdrop-filter:blur(14px);
}
.nav{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.nav .left{display:flex;align-items:center;gap:16px}
.brand{
  display:flex;align-items:center;gap:10px;
  padding:8px 12px;border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(234,240,255,.10);
}
.brand img{height:44px;width:auto;display:block}
.nav .links{display:flex;gap:16px;align-items:center;color:var(--muted);font-weight:950;font-size:14px}
.nav .links a{padding:8px 10px;border-radius:12px}
.nav .links a:hover{background:rgba(255,255,255,.06);color:var(--text)}
.nav .right{display:flex;gap:10px;align-items:center}

.menuBtn{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(234,240,255,.12);
  color:var(--text);
  font-weight:950;
  cursor:pointer;
}
.mobileMenu{
  display:none;
  border-top:1px solid rgba(234,240,255,.10);
  background:rgba(11,18,32,.85);
  backdrop-filter:blur(14px);
}
.mobileMenu .container{padding:10px 20px 14px}
.mobileMenu a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  font-weight:900;
  color:rgba(234,240,255,.86);
  border:1px solid rgba(234,240,255,.10);
  background:rgba(255,255,255,.04);
  margin-top:10px;
}
.mobileMenu a:active{transform:translateY(1px)}
.header.open .mobileMenu{display:block}

.hero{
  position:relative;
  padding:54px 0 42px;
  overflow:hidden; /* IMPORTANT: evita "apagar" seções abaixo */
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("./../img/blob-bg.svg") center/cover no-repeat;
  opacity:.92;
  pointer-events:none;
}
.heroGrid{position:relative;display:grid;grid-template-columns:1.05fr .95fr;gap:28px;align-items:center}
.card{background:var(--panel);border:1px solid var(--stroke);border-radius:var(--radius2);box-shadow:var(--shadow);backdrop-filter:blur(14px)}
.heroCard{padding:28px}
.h1{font-size:44px;line-height:1.06;margin:14px 0;letter-spacing:-.02em}
.p{color:var(--muted);margin:0 0 20px;font-weight:650}
.heroActions{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
.heroBullets{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:16px}
.bullet{display:flex;gap:10px;align-items:flex-start;padding:12px;border-radius:16px;border:1px solid rgba(234,240,255,.10);background:rgba(255,255,255,.04)}
.bullet .t{font-weight:950}
.bullet .s{color:rgba(234,240,255,.78);font-weight:650;font-size:13px;margin-top:2px}
.heroArt{padding:18px;overflow:hidden}
.heroArt img{width:100%;height:auto;border-radius:22px;border:1px solid rgba(234,240,255,.12);box-shadow:0 22px 80px rgba(0,0,0,.4)}
.kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:14px}
.kpi{padding:14px;border-radius:18px;background:rgba(255,255,255,.04);border:1px solid rgba(234,240,255,.10)}
.kpi .n{font-size:18px;font-weight:950}
.kpi .l{color:var(--muted);font-weight:850;font-size:12.5px}

.section{padding:46px 0}
.sectionTitle{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-bottom:16px}
.h2{margin:0;font-size:26px;letter-spacing:-.01em;color:var(--text)}
.small{color:rgba(234,240,255,.75);font-weight:700}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.feature{padding:18px;border-radius:var(--radius);background:rgba(255,255,255,.04);border:1px solid rgba(234,240,255,.10)}
.featureTop{display:flex;align-items:center;gap:12px;margin-bottom:10px}
.featureTop .icon{
  width:46px;height:46px;border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(234,240,255,.10);
  display:flex;align-items:center;justify-content:center;
}
.featureTop .icon svg{width:24px;height:24px}
.feature .t{font-weight:950}
.feature .d{color:rgba(234,240,255,.78);font-weight:650;margin-top:6px;font-size:14px}

.pricingWrap{display:grid;grid-template-columns:1.2fr .8fr;gap:14px}
.cardPad{padding:14px}
.table{width:100%;border-collapse:separate;border-spacing:0 10px}
.table th{text-align:left;color:rgba(234,240,255,.75);font-size:12px;letter-spacing:.08em;text-transform:uppercase;padding:6px 12px}
.row{background:rgba(255,255,255,.04);border:1px solid rgba(234,240,255,.10);border-radius:16px}
.row td{padding:14px 12px;font-weight:900}
.row td:nth-child(1){color:rgba(234,240,255,.92);font-weight:950}
.row td:nth-child(2),.row td:nth-child(3){color:rgba(234,240,255,.78)}
.row td:last-child{text-align:right}
.pill{display:inline-flex;align-items:center;gap:10px;padding:10px 12px;border-radius:999px;border:1px solid rgba(234,240,255,.12);background:rgba(255,255,255,.05);color:rgba(234,240,255,.78);font-weight:900;font-size:13px}

.highlightCard{
  padding:18px;border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(37,99,235,.16),rgba(249,115,22,.10));
  border:1px solid rgba(234,240,255,.14)
}
.highlightCard h3{margin:0 0 8px;font-size:18px}
.highlightCard ul{margin:0;padding-left:18px;color:rgba(234,240,255,.86);font-weight:650}
.highlightCard li{margin:7px 0}
.highlightCard .meta{margin-top:14px;display:flex;flex-wrap:wrap;gap:8px}

.mediaImg{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(234,240,255,.12);
}

.formCard{padding:18px}
.formGrid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.input{
  width:100%;
  padding:12px;border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(234,240,255,.12);
  color:var(--text);font-weight:800;outline:none
}
.input::placeholder{color:rgba(234,240,255,.45)}
textarea.input{min-height:130px;resize:vertical}
.label{font-weight:900;margin-bottom:6px;display:block;font-size:13px;color:rgba(234,240,255,.86)}
.note{color:rgba(234,240,255,.72);font-weight:650;font-size:13px;margin-top:10px}

.status{
  display:none;
  margin-top:12px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(234,240,255,.14);
  background:rgba(255,255,255,.05);
  color:rgba(234,240,255,.90);
  font-weight:750;
}
.status.ok{border-color:rgba(34,197,94,.35)}
.status.err{border-color:rgba(239,68,68,.35)}

.faq{display:grid;gap:10px}
.faqItem{border-radius:16px;border:1px solid rgba(234,240,255,.12);background:rgba(255,255,255,.04);overflow:hidden}
.faqQ{
  width:100%;
  text-align:left;
  padding:14px 16px;
  background:transparent;border:0;
  color:rgba(234,240,255,.95);
  font-weight:950;
  cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;gap:12px
}
.faqA{display:none;padding:0 16px 16px;color:rgba(234,240,255,.82);font-weight:650}
.faqItem.open .faqA{display:block}
.chev{transition:transform .16s ease}
.faqItem.open .chev{transform:rotate(180deg)}

.footer{padding:26px 0 40px;border-top:1px solid rgba(234,240,255,.10);color:rgba(234,240,255,.72)}
.footerGrid{display:grid;grid-template-columns:1.2fr .8fr;gap:18px}
.footer small{display:block;margin-top:10px;color:rgba(234,240,255,.55)}
.footerLinks{display:flex;gap:14px;flex-wrap:wrap}
.footerLinks a{padding:8px 10px;border-radius:12px;background:rgba(255,255,255,.04);border:1px solid rgba(234,240,255,.10)}
.footerLinks a:hover{background:rgba(255,255,255,.06);color:var(--text)}

@media (max-width:980px){
  .heroGrid{grid-template-columns:1fr}
  .h1{font-size:38px}
  .pricingWrap{grid-template-columns:1fr}
  .grid3,.grid2{grid-template-columns:1fr}
  .formGrid{grid-template-columns:1fr}
  .nav .links{display:none}
  .menuBtn{display:inline-flex;align-items:center;justify-content:center}
  .brand img{height:38px}
}
@media (max-width:420px){
  .h1{font-size:34px}
  .btn{width:100%}
  .nav .right{display:none}
}

/* Hero animated network */
.heroMedia{
  position:relative;
  width:100%;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(234,240,255,.12);
  box-shadow:0 22px 80px rgba(0,0,0,.4);
  background:rgba(255,255,255,.02);
}
.netCanvas{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio: 1200 / 760;
}
.netOverlay{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  pointer-events:none;
  opacity:.95;
}

/* Botões: animações mais evidentes e profissionais */
.btn{will-change:transform, box-shadow}
.btn.primary:hover{
  box-shadow:0 20px 70px rgba(37,99,235,.22), 0 18px 60px rgba(249,115,22,.10);
}
.btn.ghost:hover{
  box-shadow:0 16px 46px rgba(0,0,0,.28);
}

/* Logo (SVG) */
.brand img{
  height:44px;
  width:auto;
  image-rendering:auto;
}

/* Hero chips (texto explicativo, limpo e profissional) */
.heroChips{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.chip{
  position:absolute;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(234,240,255,.16);
  background:rgba(255,255,255,.06);
  color:rgba(234,240,255,.92);
  font-weight:900;
  font-size:14px;
  letter-spacing:.01em;
  backdrop-filter:blur(10px);
  box-shadow:0 14px 42px rgba(0,0,0,.30);
  animation: floaty 5.5s ease-in-out infinite;
}
.chipBlue{
  left:18px; top:16px;
  background:rgba(37,99,235,.16);
}
.chipOrange{
  right:18px; top:22px;
  background:rgba(249,115,22,.16);
  animation-delay:.7s;
}
.chipNeutral{
  left:18px; bottom:18px;
  max-width:78%;
  font-size:13px;
  color:rgba(234,240,255,.86);
  animation-delay:1.2s;
}
@keyframes floaty{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}
@media (max-width:980px){
  .chip{font-size:13px}
  .chipNeutral{max-width:92%}
}

/* ===== Custom Select (evita dropdown branco do navegador) ===== */
.nativeSelect[data-custom-select="1"]{
  display:none !important;
}
.customSelectWrap{
  position:relative;
}
.customSelectBtn{
  width:100%;
  padding:12px 44px 12px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(234,240,255,.12);
  color:rgba(234,240,255,.92);
  font-weight:900;
  outline:none;
  cursor:pointer;
  text-align:left;
  transition:border-color .12s ease, box-shadow .12s ease, transform .12s ease, background .12s ease;
}
.customSelectBtn:hover{
  background:rgba(255,255,255,.06);
}
.customSelectBtn:focus-visible{
  border-color:rgba(249,115,22,.35);
  box-shadow:0 0 0 4px rgba(249,115,22,.12);
}
.customSelectBtn::after{
  content:"▾";
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  color:rgba(234,240,255,.75);
  font-size:14px;
}
.customSelectMenu{
  position:absolute;
  left:0; right:0;
  top:calc(100% + 8px);
  background:#0B1220;
  border:1px solid rgba(234,240,255,.14);
  border-radius:16px;
  box-shadow:0 22px 80px rgba(0,0,0,.55);
  overflow:hidden;
  z-index:9999;
  display:none;
}
.customSelectWrap.open .customSelectMenu{display:block}
.customSelectOption{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 12px;
  background:transparent;
  color:rgba(234,240,255,.92);
  border:0;
  cursor:pointer;
  font-weight:850;
}
.customSelectOption:hover{
  background:rgba(255,255,255,.08);
}
.customSelectOption[aria-selected="true"]{
  background:rgba(37,99,235,.16);
}
.customSelectOption:focus-visible{
  outline:3px solid rgba(249,115,22,.35);
  outline-offset:-3px;
}
.customSelectHint{
  font-size:12px;
  color:rgba(234,240,255,.62);
  font-weight:750;
}
