:root {
  --blue-deep: #0B2F5B;
  --blue-ink: #0B1F3D;
  --blue: #3D7FDB;
  --blue-soft: #D6E7FF;
  --aqua: #A9E5E4;
  --neutral: #F6F7F9;
  --white: #FFFFFF;
  --ink: #0B2F5B;
  --body: #344B63;
  --muted: #53687E;
  --line: rgba(11, 47, 91, .14);
  --line-strong: rgba(11, 47, 91, .24);
  --surface: rgba(255, 255, 255, .86);
  --white-body: rgba(255, 255, 255, .82);
  --white-muted: rgba(255, 255, 255, .68);
  --shadow-soft: 0 24px 70px rgba(11, 31, 61, .11);
  --shadow-hover: 0 28px 90px rgba(11, 31, 61, .15);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --space-section: clamp(72px, 9vw, 132px);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--body);
  background:
    radial-gradient(circle at 8% 0%, rgba(169, 229, 228, .38), transparent 30%),
    radial-gradient(circle at 90% 6%, rgba(61, 127, 219, .16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--neutral) 34%, #ffffff 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.noise::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image: radial-gradient(rgba(11, 47, 91, .12) .55px, transparent .55px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 72%);
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--aqua); color: var(--blue-ink); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(11, 47, 91, .10);
  backdrop-filter: blur(18px) saturate(1.05);
}
.nav-shell {
  width: min(100% - 40px, var(--container));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand-logo { width: clamp(164px, 18vw, 220px); }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 13px; font-weight: 760; letter-spacing: .02em; }
.nav-links a { position: relative; padding: 8px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 1px; height: 1px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  background: var(--blue-deep);
  box-shadow: 0 16px 34px rgba(11, 47, 91, .18);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta:hover, .button:hover { transform: translateY(-1px); box-shadow: 0 20px 42px rgba(11, 47, 91, .22); background: var(--blue-ink); }
.button.secondary { color: var(--ink); background: rgba(255,255,255,.75); border-color: var(--line); box-shadow: none; }
.button.secondary:hover { background: #fff; }
.button.ghost { color: var(--ink); background: transparent; border-color: var(--line-strong); box-shadow: none; }
.button.water { color: var(--blue-ink); background: linear-gradient(135deg, #D7F3F3, var(--aqua)); box-shadow: none; }

/* Menu mobile — padrão de divulgação acessível (botão + painel sob o header) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .78);
  cursor: pointer;
}
.nav-toggle:hover { background: #fff; border-color: var(--line-strong); }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle:focus-visible, .form-shortcut:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Atalho discreto para o formulário em /inscricao/ */
.form-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 20px;
  padding: 10px 16px;
  border: 1px solid rgba(11, 47, 91, .16);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .66);
  font-size: 13px;
  font-weight: 820;
}
.form-shortcut:hover { background: #fff; border-color: var(--line-strong); }
.hero.deep .form-shortcut { color: #fff; background: rgba(255, 255, 255, .10); border-color: rgba(255, 255, 255, .22); }
.hero.deep .form-shortcut:hover { background: rgba(255, 255, 255, .16); }
.hero.deep .form-shortcut:focus-visible { outline-color: var(--aqua); }
#inscricao { scroll-margin-top: 84px; }
#inscricao:focus { outline: none; }

main { position: relative; }
.container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
.hero {
  width: min(100% - 40px, 1320px);
  margin: 34px auto 0;
  min-height: clamp(690px, 76vh, 840px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at 78% 20%, rgba(169, 229, 228, .38), transparent 25%),
    linear-gradient(136deg, #ffffff 0%, #f0f7ff 56%, #e4f7f7 100%);
  box-shadow: var(--shadow-soft);
}
.hero.deep {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(169, 229, 228, .18), transparent 25%),
    radial-gradient(circle at 18% 80%, rgba(61, 127, 219, .18), transparent 28%),
    linear-gradient(145deg, #06182E 0%, var(--blue-deep) 58%, #123C6C 100%);
}
.hero-grid {
  min-height: inherit;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .72fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: stretch;
  padding: clamp(34px, 6vw, 74px);
}
.hero-grid > *, .layout-two > *, .section-header > *, .founder-card > *, .wizard-shell > * { min-width: 0; }
.hero-copy { max-width: 760px; align-self: end; padding-bottom: clamp(18px, 3vw, 42px); }
.hero-logo-premium { width: clamp(184px, 20vw, 272px); margin-bottom: clamp(44px, 7vw, 84px); }
.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 830;
  letter-spacing: .22em;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero.deep .eyebrow { color: var(--aqua); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, .display { font-family: var(--serif); color: var(--ink); letter-spacing: -.055em; text-wrap: balance; }
h1 { margin: 0; font-size: clamp(58px, 9vw, 128px); line-height: .88; max-width: 920px; }
h2 { margin: 0; font-size: clamp(38px, 5.7vw, 76px); line-height: .94; }
.hero.deep h1, .hero.deep h2, .hero.deep .display { color: #fff; }
.hero p.lead { margin: 24px 0 0; max-width: 720px; color: var(--body); font-size: clamp(18px, 2vw, 23px); line-height: 1.48; }
.hero.deep p.lead { color: var(--white-body); }
/* Respiro H2 → bloco seguinte (mínimo 28px no desktop) */
h2 + p, h2 + ul, h2 + ol, h2 + .section-copy, h2 + .step-list, h2 + .faq, h2 + .timeline, h2 + .traversal { margin-top: clamp(28px, 3vw, 40px); }
.hero-quote {
  max-width: 600px;
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 2px solid var(--aqua);
  color: var(--ink);
  background: rgba(255,255,255,.56);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-weight: 760;
}
.hero.deep .hero-quote { color: #fff; background: rgba(255,255,255,.08); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-art-panel {
  align-self: stretch;
  min-height: 540px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.76);
  background: var(--blue-deep);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 26px 70px rgba(11, 47, 91, .13);
}
.hero-art-panel img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.hero-art-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11,31,61,.04) 0%, rgba(11,47,91,.06) 56%, rgba(11,31,61,.18) 100%);
}
.hero-art-panel.workshop-art img { object-position: center 43%; filter: saturate(.96) contrast(1.04); }
.hero.deep .hero-art-panel { border-color: rgba(255,255,255,.18); box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 28px 76px rgba(0,0,0,.22); }
.hero.deep .hero-art-panel::after { background: linear-gradient(180deg, rgba(6,24,46,.10) 0%, rgba(6,24,46,.04) 50%, rgba(6,24,46,.30) 100%); }

.section { padding: var(--space-section) 0; }
.section.compact { padding: clamp(48px, 6vw, 88px) 0; }
.section + .section { border-top: 1px solid rgba(11,47,91,.08); }
.section-header { display: grid; grid-template-columns: minmax(260px, .76fr) minmax(0, 1fr); gap: clamp(28px, 6vw, 72px); align-items: end; margin-bottom: clamp(28px, 5vw, 56px); }
.section-header p, .section-copy p { color: var(--body); font-size: clamp(17px, 1.7vw, 20px); line-height: 1.68; }
.section-copy { max-width: 790px; }
.section-copy p:last-child { margin-bottom: 0; }
.layout-two { display: grid; grid-template-columns: minmax(0, .82fr) minmax(300px, .68fr); gap: clamp(28px, 5vw, 66px); align-items: start; }
.layout-two.equal { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pullquote {
  position: relative;
  margin: 0;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-xl);
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 8%, rgba(169,229,228,.44), transparent 34%),
    linear-gradient(145deg, #fff, #edf7ff);
  border: 1px solid rgba(11,47,91,.13);
  box-shadow: var(--shadow-soft);
}
.pullquote p { margin: 0; font-family: var(--serif); font-size: clamp(30px, 3.6vw, 52px); line-height: 1.02; letter-spacing: -.045em; color: var(--ink); }
.kicker-line { width: 74px; height: 1px; background: var(--blue); margin-bottom: 22px; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card, .soft-card {
  position: relative;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(11,47,91,.07);
}
.card h3, .soft-card h3 { margin: 0 0 12px; color: var(--ink); font-size: clamp(18px, 1.8vw, 22px); line-height: 1.2; letter-spacing: -.02em; }
.card p, .card li, .soft-card p, .soft-card li { color: var(--muted); }
.card p:last-child, .soft-card p:last-child { margin-bottom: 0; }
.line-icon { width: 48px; height: 48px; margin-bottom: 22px; color: var(--ink); }
.tool-carousel { margin-top: 28px; padding: 22px 0; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tool-track { display: flex; width: max-content; gap: 14px; animation: carousel-drift 34s linear infinite; }
.tool-set { display: flex; gap: 14px; padding-right: 14px; }
.tool-carousel:hover .tool-track { animation-play-state: paused; }
.tool-item { display: inline-flex; align-items: center; min-width: max-content; padding: 11px 18px; border-radius: 999px; color: var(--blue-deep); background: rgba(255,255,255,.62); font-family: var(--sans); font-size: 15px; font-weight: 700; letter-spacing: .14em; white-space: nowrap; }
.carousel-caption { margin: 14px 0 0; color: var(--muted); font-size: 14px; font-style: italic; }
@keyframes carousel-drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.founder-card { display: grid; grid-template-columns: 35% minmax(0, 1fr); gap: clamp(48px, 7vw, 92px); align-items: center; }
.photo-placeholder {
  min-height: 540px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.0), rgba(11,47,91,.22)),
    radial-gradient(circle at 50% 28%, rgba(255,255,255,.76), transparent 16%),
    radial-gradient(ellipse at 50% 58%, rgba(11,47,91,.48), transparent 25%),
    linear-gradient(145deg, #dcebf7, #a9cde7 48%, #6f98bd 100%);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
}
.photo-placeholder::before { content: ""; position: absolute; left: 14%; right: 14%; bottom: 0; height: 62%; border-radius: 42% 42% 0 0; background: linear-gradient(145deg, rgba(11,47,91,.70), rgba(13,62,112,.50)); }
.photo-placeholder::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.18), transparent 45%, rgba(169,229,228,.12)); mix-blend-mode: screen; }

.hero-art-panel picture { display: block; width: 100%; height: 100%; }
.founder-photo {
  display: block;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  background: #dcebf7;
}
.founder-photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center center; }
.button[disabled], .button[aria-disabled="true"] { opacity: .56; cursor: not-allowed; transform: none; box-shadow: none; }
.button[disabled]:hover, .button[aria-disabled="true"]:hover { transform: none; box-shadow: none; background: var(--blue-deep); }
.nz-honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.prototype-status.is-error { color: #6E2E2E; background: #FFF2F2; border-color: rgba(178,69,69,.22); }
.prototype-status.is-success { color: var(--ink); background: rgba(169,229,228,.28); border-color: rgba(11,47,91,.10); }

.founder-name { margin: 0; color: var(--blue); font-size: 15px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.offer-list { display: grid; gap: 14px; }
.offer-item { display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: start; padding: 18px 0; border-top: 1px solid var(--line); }
.offer-item p { color: var(--body); margin: 0; }
.offer-dot { width: 8px; height: 8px; margin-top: .68em; border-radius: 50%; background: var(--aqua); }
.contact-band { color: #fff; background: linear-gradient(145deg, var(--blue-ink), var(--blue-deep)); border-radius: var(--radius-xl); padding: clamp(30px, 6vw, 58px); display: grid; grid-template-columns: minmax(220px, .45fr) 1fr; gap: 34px; align-items: end; overflow: hidden; position: relative; }
.contact-band::after { content: ""; position: absolute; width: 520px; height: 520px; right: -160px; top: -240px; border-radius: 50%; border: 1px solid rgba(169,229,228,.20); box-shadow: inset 0 0 0 80px rgba(169,229,228,.04); }
.footer-logo { width: min(260px, 70vw); position: relative; z-index: 1; }
.contact-band p, .site-footer p { color: var(--white-body); margin: 0; position: relative; z-index: 1; }
.site-footer { margin-top: 28px; padding: 28px 0 44px; color: var(--white-muted); }
.footer-contact { display: flex; align-items: center; }
.footer-email { display: inline-flex; align-items: center; gap: 8px; color: var(--white-body); font-weight: 760; }
.footer-email:hover, .footer-email:focus-visible { color: #fff; }
.footer-email-icon { flex: 0 0 auto; opacity: .86; }
.footer-cnpj { color: var(--white-muted); }
.footer-line { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; font-size: 13px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.info-chip { display: inline-flex; align-items: center; min-height: 36px; padding: 8px 12px; border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.72); border: 1px solid rgba(11,47,91,.13); font-size: 13px; font-weight: 780; }
.hero.deep .info-chip { color: #fff; background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18); }
.check-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.check-card { padding: clamp(24px, 3.4vw, 34px); border-radius: var(--radius-xl); background: #fff; border: 1px solid var(--line); }
.check-card.muted { background: linear-gradient(145deg, #fff, #f2f6fb); }
.check-card h3 { color: var(--ink); margin: 0 0 18px; font-size: clamp(22px, 2vw, 28px); }
ul.clean { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
ul.clean li { position: relative; padding-left: 22px; color: var(--body); }
ul.clean li::before { content: ""; position: absolute; left: 0; top: .68em; width: 8px; height: 8px; border-radius: 50%; background: var(--aqua); }
ul.clean.deliverables li { padding-left: 28px; }
ul.clean.deliverables li::before {
  content: "✓";
  top: .1em;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 880;
}
.traversal { display: grid; gap: 10px; margin: 0; }
.traversal div { padding: 18px 20px; border-radius: 22px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-family: var(--serif); font-size: clamp(24px, 3vw, 38px); line-height: 1.06; letter-spacing: -.04em; }
.step-list { counter-reset: steps; display: grid; gap: 16px; }
.step-item { counter-increment: steps; display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 22px; border-radius: 26px; background: #fff; border: 1px solid var(--line); }
.step-item::before { content: counter(steps); display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: var(--ink); background: rgba(169,229,228,.45); font-weight: 860; }
.step-item p { margin: 0; color: var(--body); }
.timeline { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; background: #fff; }
.timeline-item { display: grid; grid-template-columns: 220px 1fr; gap: 22px; padding: 22px; }
.timeline-item + .timeline-item { border-top: 1px solid var(--line); }
.timeline-item strong { color: var(--ink); }
.timeline-item p { margin: 0; color: var(--body); }
.note { padding: 18px 20px; border-radius: 20px; background: rgba(169,229,228,.22); border: 1px solid rgba(11,47,91,.12); color: var(--body); font-size: 14px; }
.placeholder-note { padding: 16px 18px; border-radius: 18px; background: #fff; border: 1px dashed rgba(11,47,91,.28); color: var(--muted); font-size: 14px; }
.faq { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: 20px; background: #fff; padding: 18px 20px; }
.faq summary { cursor: pointer; color: var(--ink); font-weight: 840; }
.faq p { margin: 12px 0 0; color: var(--body); }

.signup-panel { border-radius: var(--radius-xl); padding: clamp(26px, 4vw, 42px); background: linear-gradient(145deg, #fff, #eef8ff 60%, #e4f8f7); border: 1px solid rgba(11,47,91,.12); box-shadow: var(--shadow-soft); }
.signup-panel h2 { margin: 0 0 16px; font-size: clamp(38px, 5.7vw, 76px); line-height: .94; }
.signup-panel p { color: var(--body); max-width: 800px; }
.deadline-note { color: var(--ink); font-weight: 800; letter-spacing: .02em; }
.deadline-chip { display: inline-flex; align-items: center; gap: 8px; margin: 14px 0 0; padding: 8px 14px; border-radius: 999px; background: rgba(169,229,228,.30); border: 1px solid rgba(11,47,91,.14); color: var(--ink); font-size: 13px; font-weight: 820; }
.wizard-shell { margin-top: 28px; display: grid; grid-template-columns: minmax(220px, .34fr) 1fr; gap: 24px; align-items: start; }
.wizard-side { position: sticky; top: 96px; display: grid; gap: 10px; padding: 18px; border-radius: 24px; background: rgba(255,255,255,.78); border: 1px solid var(--line); }
.wizard-tab { width: 100%; text-align: left; border: 1px solid transparent; background: transparent; border-radius: 16px; padding: 12px 12px; color: var(--muted); cursor: pointer; }
.wizard-tab strong { display: block; color: inherit; font-size: 12px; font-weight: 850; line-height: 1; }
.wizard-tab span { display: none; }
.wizard-tab.is-active { background: var(--blue-deep); color: #fff; }
.progress-wrap { margin-top: 6px; }
.progress-track { height: 8px; border-radius: 999px; background: rgba(11,47,91,.12); overflow: hidden; }
.progress-fill { width: 25%; height: 100%; background: linear-gradient(90deg, var(--blue), var(--aqua)); transition: width .24s ease; }
.progress-label { margin: 8px 0 0; color: var(--muted); font-size: 12px; font-weight: 780; }
.wizard-main { border-radius: 28px; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.wizard-step { display: none; padding: clamp(22px, 4vw, 40px); }
.wizard-step.is-active { display: block; }
.wizard-step h3 { margin: 0 0 8px; color: var(--ink); font-size: clamp(24px, 3vw, 34px); letter-spacing: -.03em; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 24px; align-items: start; }
.field { display: grid; gap: 8px; align-content: start; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.form-grid > .field:not(.full) > label:first-child { display: flex; align-items: flex-end; min-height: 38px; }
label { color: var(--ink); font-size: 13px; font-weight: 840; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(11,47,91,.20);
  border-radius: 16px;
  background: #fff;
  color: var(--body);
  padding: 13px 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
textarea { min-height: 116px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(61,127,219,.14); }
.field-hint { color: var(--muted); font-size: 12px; }
.field.is-invalid input, input.is-invalid { border-color: #B24545; background: #FFF8F8; box-shadow: 0 0 0 4px rgba(178,69,69,.10); }
.field.is-invalid .field-hint, .field-error { color: #B24545; font-weight: 760; }
.checkbox-list, .radio-list { display: grid; gap: 10px; margin-top: 8px; }
.choice { display: flex; gap: 10px; align-items: flex-start; padding: 10px 12px; border-radius: 14px; background: #F8FAFC; border: 1px solid rgba(11,47,91,.08); color: var(--muted); }
.choice input { width: auto; margin-top: 4px; accent-color: var(--blue-deep); }
.wizard-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 18px clamp(22px, 4vw, 40px); border-top: 1px solid var(--line); background: #F8FAFC; }
.privacy-consent { margin-top: 24px; padding: 20px; border-radius: 20px; background: rgba(169,229,228,.22); border: 1px solid rgba(11,47,91,.12); }
.privacy-consent p { margin: 0; color: var(--body); font-size: 14px; }
.privacy-consent .choice { margin-top: 14px; background: rgba(255,255,255,.72); }
.prototype-status { display: none; margin: 24px clamp(22px, 4vw, 40px); padding: 20px 22px; border-radius: 18px; color: var(--ink); background: rgba(169,229,228,.28); border: 1px solid rgba(11,47,91,.10); font-size: 15px; line-height: 1.6; }
.prototype-status.is-visible { display: block; }
.prototype-status.is-success { background: linear-gradient(145deg, rgba(169,229,228,.34), rgba(238,248,255,.9)); border-color: rgba(11,47,91,.16); }
.prototype-status.is-error { background: #FFF8F8; border-color: rgba(178,69,69,.28); color: #7B2D2D; }
.wizard-main.is-complete .wizard-step, .wizard-main.is-complete .wizard-actions { display: none; }
.wizard-main.is-complete .prototype-status { margin-block: clamp(28px, 5vw, 48px); }

.privacy-page .hero { min-height: 520px; }
.privacy-content { max-width: 840px; }
.privacy-content h2 { margin-top: 34px; }
.privacy-content p, .privacy-content li { color: var(--body); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .tool-track { animation: none; flex-wrap: wrap; width: auto; }
  .tool-set[aria-hidden="true"] { display: none; }
}
@media (max-width: 980px) {
  .nav-shell { min-height: auto; padding: 14px 0; align-items: flex-start; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { margin-left: auto; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin: 0;
    padding: 10px 20px 18px;
    color: var(--ink);
    font-size: 15px;
    background: rgba(255, 255, 255, .99);
    border-bottom: 1px solid rgba(11, 47, 91, .10);
    box-shadow: 0 30px 60px rgba(11, 31, 61, .14);
    backdrop-filter: blur(18px) saturate(1.05);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { display: flex; align-items: center; min-height: 46px; padding: 8px 2px; }
  .nav-links a + a { border-top: 1px solid rgba(11, 47, 91, .08); }
  .hero-grid, .layout-two, .layout-two.equal, .section-header, .founder-card, .contact-band, .wizard-shell { grid-template-columns: 1fr; }
  .founder-card { gap: clamp(40px, 6vw, 56px); }
  .founder-photo { max-width: 420px; }
  #quem-conduz .founder-card > div:last-child { margin-top: 14px; }
  .hero { min-height: auto; }
  .hero-grid { align-items: start; }
  .hero-art-panel { min-height: 420px; }
  .card-grid, .check-columns { grid-template-columns: 1fr; }
  .wizard-side { position: relative; top: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  body { background: var(--neutral); }
  .container, .hero, .nav-shell { width: calc(100% - 28px); max-width: var(--container); }
  .nav-shell { flex-wrap: wrap; gap: 12px; }
  .nav-cta { margin-left: 0; }
  .hero-copy, .hero p.lead { max-width: 100%; }
  .button, .nav-cta { max-width: 100%; white-space: normal; text-align: center; }
  .hero { margin-top: 18px; border-radius: 28px; }
  .hero-grid { width: 100%; padding: 28px; gap: 26px; }
  .hero-art-panel { min-height: 360px; border-radius: var(--radius-lg); }
  .section { padding: 70px 0; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid > .field:not(.full) > label:first-child { min-height: 0; }
  .wizard-side { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; padding: 12px; }
  .wizard-tab { text-align: center; padding: 10px 6px; border-radius: 12px; }
  .progress-wrap { grid-column: 1 / -1; }
  .photo-placeholder { min-height: 420px; }
  #quem-conduz .founder-card > div:last-child { margin-top: 22px; }
  .form-shortcut { display: inline-flex; max-width: 100%; white-space: normal; }
  .footer-line { display: grid; }
}
@media (max-width: 520px) {
  html, body { overflow-x: hidden; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) !important; }
  .hero-copy, .hero p.lead, .hero-quote, .hero-actions, .chip-row { width: 100%; max-width: 300px; }
  h1 { width: 100%; max-width: 300px; font-size: clamp(40px, 13vw, 50px); text-wrap: pretty; }
  h2, .signup-panel h2 { font-size: clamp(36px, 12vw, 54px); }
  .eyebrow { letter-spacing: .15em; overflow-wrap: anywhere; }
  .hero-quote, .hero p.lead { overflow-wrap: anywhere; }
  .hero-quote { font-size: 14px; padding: 14px 16px; }
  .hero-actions, .wizard-actions { align-items: stretch; }
  .button { width: 100%; }
  .chip-row { display: grid; grid-template-columns: 1fr; }
  .info-chip { width: 100%; justify-content: center; text-align: center; white-space: normal; }
  .contact-band { padding: 26px; border-radius: 26px; }
  .tool-track { animation: none; flex-wrap: wrap; width: auto; }
  .tool-carousel { overflow: visible; }
  .tool-set[aria-hidden="true"] { display: none; }
}
