:root{
  /* Preto */
  --bg:#0a0a0a;
  --bg2:#121212;

  --stroke:rgba(255,255,255,.10);
  --text:#f5f5f5;
  --muted:rgba(245,245,245,.72);

  /* Laranja */
  --primary:#ff8c1a;
  --primary2:#ffb347;

  --shadow:0 18px 45px rgba(0,0,0,.60);
  --shadow2:0 10px 25px rgba(0,0,0,.45);

  --max:1180px;
  --ok:#25D366;

  /* ✅ neutros (sem “azul vazando”) */
  --panel: rgba(14, 14, 14, .94);
  --field: rgba(10, 10, 10, .92);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,"Helvetica Neue",sans-serif;

  /* ✅ fundo laranja/preto, sem azul */
  background:
    radial-gradient(900px 460px at 18% -10%, rgba(255,140,26,.16), transparent 60%),
    radial-gradient(700px 360px at 90% 0%, rgba(255,179,71,.12), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 60%, #070707 100%);

  color:var(--text);
}
a{color:inherit;text-decoration:none}
.container{width:min(100% - 34px,var(--max));margin:0 auto}

/* Header */
.header{
  position:sticky;top:0;z-index:100;
  backdrop-filter:blur(12px);
  background:rgba(7,7,7,.55);
  border-bottom:1px solid var(--stroke);
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 0}
.brand{display:flex;align-items:center;gap:12px;font-weight:900}
.brand .logo{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--primary),var(--primary2));
  box-shadow:var(--shadow2);
}
.brand .logo svg{width:22px;height:22px;fill:#140c05}
.brand .name{font-size:22px}
.brand .name b{color:var(--primary2)}

.menu{display:flex;gap:8px;align-items:center}
.menu a{
  padding:10px 14px;color:var(--muted);
  border-radius:14px;border:1px solid transparent;
}
.menu a:hover{color:var(--text);border-color:var(--stroke);background:rgba(255,255,255,.04)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:16px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  cursor:pointer;
  transition:transform .15s ease,background .15s ease,border-color .15s ease;
}
.btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.18)}
.btn-top{
  border:0;color:#140c05;font-weight:900;
  background:linear-gradient(135deg,rgba(255,140,26,.95),rgba(255,179,71,.92));
}
.btn-top.active{filter:brightness(1.05)}

.page{padding:28px 0 60px}

/* ✅ Card mais sólido + blur */
.card{
  border:1px solid var(--stroke);
  background: var(--panel);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow:hidden;
  backdrop-filter: blur(10px);
}

.card-head{padding:28px 28px 0}
.badge{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 14px;border-radius:999px;
  border:1px solid rgba(255,140,26,.30);
  background:rgba(255,140,26,.14);
  font-weight:700;
  width:fit-content;
}
.badge .mini{
  width:28px;height:28px;border-radius:10px;
  background:linear-gradient(135deg,var(--primary),var(--primary2));
  display:grid;place-items:center;color:#140c05;font-weight:900;
}
h1{
  margin:14px 0 10px;
  font-size:clamp(28px,3vw,40px);
  letter-spacing:-.6px;
}
.lead{
  margin:0;
  color:rgba(245,245,245,.82);
  line-height:1.6;
  max-width:820px;
}

.form{padding:22px 28px 28px}

/* Form */
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:18px;
}
.field{display:flex;flex-direction:column;gap:8px}
label{font-size:13px;color:var(--muted)}

/* ✅ Inputs/textarea neutros */
input, textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.14);
  background: var(--field);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(255,140,26,0.55);
  box-shadow: 0 0 0 4px rgba(255,140,26,0.12);
}
textarea{min-height:120px;resize:vertical}

.full{grid-column:1 / -1}

.actions{
  margin-top:16px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn-primary{
  border:0;color:#140c05;font-weight:900;
  background: linear-gradient(135deg,var(--primary),var(--primary2));
}
.btn-whats{
  border:1px solid rgba(37,211,102,.35);
  background: rgba(37,211,102,.10);
  color:#dcffea;
}

/* Info boxes */
.info{
  margin-top:18px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.info-box{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow2);
}
.info-box h3{margin:0 0 8px}
.info-box p{margin:6px 0;color:var(--muted);line-height:1.55}
.muted{color:var(--muted)}

/* Footer */
.footer{border-top:1px solid var(--stroke);padding:22px 0;color:var(--muted)}
.footer .row{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap}
.footer a{color:var(--text);opacity:.9}
.footer a:hover{opacity:1}

@media (max-width:980px){
  .menu{display:none}
  .grid{grid-template-columns:1fr}
  .info{grid-template-columns:1fr}
  .card-head{padding:22px 18px 0}
  .form{padding:18px}
}
