:root{
  --bg:#070a0b;
  --bg2:#0b1112;
  --card: rgba(255,255,255,.06);
  --stroke: rgba(229,242,242,.10);
  --text: rgba(229,242,242,.92);
  --muted: rgba(229,242,242,.70);

  --brand:#14b8a6;     /* teal do portal */
  --brand2:#0ea5a6;
  --brandGlow: rgba(20,184,166,.35);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body.site-body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(20,184,166,.12), transparent 60%),
              radial-gradient(1000px 500px at 80% 0%, rgba(14,165,166,.10), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
}

.site-main{ padding-top: 86px; } /* espaço pro header fixo */

/* ===== Header ===== */
.site-header{
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header .navbar{ background: transparent; }
.site-header-glow{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20,184,166,.45), transparent);
}

.site-logo{ width: 46px; height: 46px; object-fit: contain; }
.site-logo-sm{ width: 34px; height: 34px; object-fit: contain; }

.brand-text{ line-height: 1.05; }
.brand-title{ font-weight: 800; letter-spacing: .06em; font-size: 12px; }
.brand-sub{ font-weight: 600; letter-spacing: .12em; font-size: 9px; color: rgba(229,242,242,.65); }

.navbar .nav-link{
  color: rgba(229,242,242,.78);
  font-weight: 600;
}
.navbar .nav-link:hover{ color: rgba(229,242,242,.95); }
.navbar .nav-link.active{
  color: #fff;
  position: relative;
}
.navbar .nav-link.active::after{
  content:"";
  position:absolute;
  left: 10px;
  right: 10px;
  bottom: -10px;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
  opacity: .9;
}

/* ===== Buttons ===== */
.btn-brand{
  background: linear-gradient(180deg, var(--brand), var(--brand2));
  border: 1px solid rgba(255,255,255,.10);
  color: #062a28;
  font-weight: 800;
  border-radius: 12px;
}
.btn-brand:hover{ filter: brightness(1.05); color:#062a28; }
.btn-outline-brand{
  border: 1px solid rgba(20,184,166,.55);
  color: rgba(229,242,242,.92);
  border-radius: 12px;
  font-weight: 700;
}
.btn-outline-brand:hover{
  background: rgba(20,184,166,.12);
  color:#fff;
}

/* ===== Offcanvas ===== */
.site-offcanvas{
  background: rgba(0,0,0,.92) !important;
  border-left: 1px solid rgba(255,255,255,.08);
  height: 100vh;
}
.off-link{
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(229,242,242,.85);
  border: 1px solid transparent;
  background: rgba(255,255,255,.03);
}
.off-link:hover{ background: rgba(20,184,166,.10); }
.off-link.active{
  background: rgba(20,184,166,.16);
  border-color: rgba(20,184,166,.28);
  color: #fff;
}

/* ===== Hero ===== */
.hero{
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background:
    url("/public/img/hero.png") center/cover no-repeat;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.03);
}
.hero-overlay{
  position:absolute; inset:0;
  background: radial-gradient(800px 500px at 50% 35%, rgba(0,0,0,.35), rgba(0,0,0,.70)),
              linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.85));
}
.hero-content{ position: relative; padding: 64px 0; }

.pill{
  display:inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(229,242,242,.85);
  font-weight: 700;
  letter-spacing: .03em;
}

.fw-800{ font-weight: 800; }
.text-brand{ color: var(--brand); }
.text-white-75{ color: rgba(255,255,255,.75) !important; }

.hero-metrics{
  display:flex;
  justify-content:center;
  gap: 18px;
  flex-wrap: wrap;
}
.metric{
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  min-width: 180px;
}
.metric-value{ font-size: 22px; font-weight: 900; }
.metric-label{ color: rgba(229,242,242,.70); font-weight: 600; }

/* ===== Sections ===== */
.section{ padding: 72px 0; }
.section-dark{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.card-glass{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.icon-badge{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(20,184,166,.15);
  border: 1px solid rgba(20,184,166,.18);
}

.steps{ display: grid; gap: 12px; }
.step{
  display:flex; gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.step-num{
  width: 34px; height: 34px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(20,184,166,.18);
  border: 1px solid rgba(20,184,166,.22);
  font-weight: 900;
}
.step-title{ font-weight: 800; }
.step-desc{ color: rgba(229,242,242,.65); }

.showcase{
  position: relative;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 25px 60px rgba(0,0,0,.45);
}
.showcase-img{
  position:absolute; inset:0;
  background: url("/img/showcase.jpg") center/cover no-repeat;
  filter: saturate(1.05);
  transform: scale(1.03);
}
.showcase::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(600px 400px at 30% 30%, rgba(20,184,166,.12), transparent 60%),
              linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.65));
}
.showcase-card{
  position:absolute;
  left: 18px; bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.showcase-card.alt{
  left: auto; right: 18px; bottom: 94px;
}

/* ===== Page Hero ===== */
.page-hero{
  padding: 54px 0 28px;
  background: radial-gradient(700px 350px at 30% 0%, rgba(20,184,166,.14), transparent 60%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ===== Forms ===== */
.form-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.form-control{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(229,242,242,.92);
  border-radius: 14px;
}
.form-control:focus{
  background: rgba(255,255,255,.05);
  color: rgba(229,242,242,.92);
  border-color: rgba(20,184,166,.55);
  box-shadow: 0 0 0 .25rem rgba(20,184,166,.18);
}
.form-label{ color: rgba(229,242,242,.85); font-weight: 700; }

.mini-card{
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.mini-title{ font-weight: 800; margin-bottom: 4px; }

.bullet{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(229,242,242,.80);
}

/* ===== CTA ===== */
.cta{
  display:flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(20,184,166,.20);
  background: radial-gradient(600px 300px at 20% 50%, rgba(20,184,166,.18), transparent 60%),
              rgba(255,255,255,.03);
}
@media (max-width: 767px){
  .cta{ flex-direction: column; align-items: stretch; }
}

/* ===== Footer ===== */
.site-footer{
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.35);
}
.footer-title{ font-weight: 900; letter-spacing: .02em; }
.footer-link{
  text-decoration:none;
  color: rgba(229,242,242,.75);
}
.footer-link:hover{ color: rgba(229,242,242,.95); }
.footer-hr{ border-color: rgba(255,255,255,.10); }
