:root {
  --bg: #0e0d0a;
  --panel: #191713;
  --panel-2: #211e18;
  --paper: #ece7dd;
  --ink: #14130f;
  --text: #faf8f3;
  --muted: #b5ad9f;
  --line: rgba(250, 248, 243, .18);
  --accent: #e8451f;
  --amber: #f2b705;
  --green: #56a777;
  --display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--bg); color-scheme: dark; }
body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(250, 248, 243, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(250, 248, 243, .035) 1px, transparent 1px),
    var(--bg);
  background-size: 88px 88px;
  color: var(--text);
  font-family: var(--display);
}
a { color: inherit; }
.shell, .site-shell { width: min(1080px, calc(100% - 32px)); margin: 0 auto; }
.hazard-strip {
  height: 8px;
  background: repeating-linear-gradient(45deg, var(--bg) 0 16px, var(--amber) 16px 32px);
}
.utility-bar {
  background: #090806;
  color: #938b7d;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.utility-inner { min-height: 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.live-dot { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--accent); }
.topbar { border-bottom: 1px solid var(--line); background: rgba(14, 13, 10, .94); }
.topbar-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}
.brand-mark {
  width: 17px;
  height: 17px;
  border: 2px solid var(--text);
  background: var(--accent);
  box-shadow: 4px 4px 0 var(--amber);
  transform: rotate(45deg);
}
.back-link { color: var(--muted); font-size: .9rem; font-weight: 700; }
.nav { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.nav a { text-decoration: none; }
.nav a:hover, .nav a.active { color: var(--text); }
.nav a[hidden] { display: none; }
.nav-cta { min-height: 38px; display: inline-flex; align-items: center; padding: 0 12px; border: 2px solid var(--text); background: var(--accent); color: var(--text); }
main { padding: 46px 0 72px; }
.layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 44px;
  align-items: start;
}
.kicker, .eyebrow {
  display: inline-block;
  color: var(--amber);
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
h1 { max-width: 720px; margin: 14px 0 16px; font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: .97; letter-spacing: -.05em; }
h1 em { color: var(--accent); font-style: normal; }
.lead { max-width: 620px; margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
.deliverable {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(33, 30, 24, .72);
}
.deliverable h2 { margin: 0 0 14px; font-size: 1.08rem; }
.deliverable ul { margin: 0; padding-left: 20px; color: var(--muted); line-height: 1.65; }
.deliverable strong { color: var(--text); }
.boundary { margin-top: 14px; color: var(--muted); font-size: .84rem; line-height: 1.55; }
.form-card {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 10px 10px 0 rgba(232, 69, 31, .22);
}
.form-card h2 { margin: 8px 0 6px; font-size: 1.55rem; }
.form-intro { margin: 0 0 20px; color: var(--muted); line-height: 1.55; }
.privacy-summary {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--amber);
  background: var(--panel-2);
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}
.privacy-summary strong { color: var(--text); }
.privacy-summary summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
}
.privacy-summary summary::marker { color: var(--amber); }
.privacy-summary p { margin: 12px 0 0; }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; color: var(--text); font-size: .9rem; font-weight: 750; }
.field-wide { grid-column: 1 / -1; }
.optional { color: var(--muted); font-size: .76rem; font-weight: 600; }
input, select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #11100d;
  color: var(--text);
  font: inherit;
  padding: 0 13px;
}
input:focus, select:focus, button:focus-visible, a:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 16px 0 20px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.5;
}
.consent input { min-height: 20px; height: 20px; margin-top: 1px; accent-color: var(--accent); }
.consent strong { color: var(--text); }
.button {
  min-height: 50px;
  width: 100%;
  border: 2px solid var(--text);
  background: var(--accent);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 18px;
  text-align: center;
}
.button[disabled] { cursor: wait; opacity: .72; }
.form-status { min-height: 24px; margin: 12px 0 0; color: var(--muted); font-size: .86rem; line-height: 1.5; }
.form-status[data-state="error"] { color: #ff9a82; }
.fine-print { margin: 4px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.thanks { max-width: 760px; }
.thanks h1 { font-size: clamp(2.35rem, 7vw, 5rem); }
.next-card { margin-top: 30px; padding: 24px; border: 1px solid var(--line); background: var(--panel); }
.next-card h2 { margin: 0 0 10px; }
.next-card p { color: var(--muted); line-height: 1.6; }
.next-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.next-actions .button { display: inline-flex; width: auto; min-width: 220px; align-items: center; justify-content: center; text-decoration: none; }
.secondary { background: transparent; }
footer { padding: 28px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }

@media (max-width: 820px) {
  main { padding-top: 32px; }
  .layout { grid-template-columns: 1fr; gap: 28px; }
  h1 { font-size: clamp(2.3rem, 13vw, 4rem); }
  .nav a:not(.nav-cta):not(#nav-login):not(#nav-perfil) { display: none; }
}

@media (max-width: 520px) {
  .shell, .site-shell { width: min(100% - 24px, 1080px); }
  .utility-inner { min-height: 28px; }
  .utility-inner span:last-child { display: none; }
  .topbar-inner { min-height: 58px; }
  .nav { gap: 8px; font-size: .7rem; }
  .nav-cta { display: none; }
  .fields { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .form-card { padding: 20px 16px; box-shadow: 6px 6px 0 rgba(232, 69, 31, .22); }
  .next-actions { display: grid; }
  .next-actions .button { width: 100%; }
}
