﻿:root{
  --ink:#111111;
  --ink-soft:#1f1f1d;
  --graphite:#343536;
  --graphite-2:#5f6365;
  --brand:#ffb81c;
  --brand-strong:#f28a00;
  --brand-soft:#fff7df;
  --paper:#fbfaf7;
  --surface:#ffffff;
  --surface-muted:#f5f3ee;
  --line:#e4dfd5;
  --line-strong:#cdc5b6;
  --text:#242424;
  --muted:#6f6f6b;
  --success:#23764a;
  --success-soft:#edf8f1;
  --error:#b42318;
  --error-soft:#fff1ef;
  --focus:rgba(255,184,28,.34);
  --shadow-soft:0 18px 46px rgba(17,17,17,.08);
  --shadow-raised:0 24px 70px rgba(17,17,17,.18);
  --radius:8px;
  --radius-sm:6px;
  --space-page:clamp(18px,4vw,44px);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  min-height:100vh;
  color:var(--text);
  background:
    linear-gradient(180deg,#f3f1eb 0,#fbfaf7 360px),
    var(--paper);
  font-family:"Manrope", Arial, Helvetica, sans-serif;
  font-size:16px;
  line-height:1.55;
  text-rendering:optimizeLegibility;
}

a,
button,
input,
select,
summary{
  font:inherit;
}

a{
  color:inherit;
}

button{
  border:0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
.email-tooltip:focus-visible{
  outline:3px solid var(--focus);
  outline-offset:3px;
}

.topbar{
  color:#fff;
  background:var(--ink);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.topbar-inner{
  width:min(100%,1180px);
  min-height:78px;
  margin:0 auto;
  padding:12px var(--space-page);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand-lockup{
  display:flex;
  align-items:center;
  gap:14px;
  color:#fff;
  text-decoration:none;
}

.topbar-logo{
  width:56px;
  height:56px;
  padding:6px;
  object-fit:contain;
  background:#fff;
  border-radius:var(--radius-sm);
}

.brand-lockup strong{
  display:block;
  color:#fff;
  font-size:14px;
  font-weight:800;
  letter-spacing:.02em;
}

.brand-lockup small{
  display:block;
  margin-top:2px;
  color:rgba(255,255,255,.68);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.portal-area{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
}

.portal-area p{
  max-width:430px;
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:12px;
  font-weight:600;
  line-height:1.45;
  text-align:right;
}

.portal-area a{
  min-height:40px;
  padding:9px 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  border-radius:var(--radius-sm);
  text-decoration:none;
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
  transition:background .18s ease,border-color .18s ease,color .18s ease;
}

.portal-area a:hover{
  color:var(--ink);
  background:var(--brand);
  border-color:var(--brand);
}

.hero{
  color:#fff;
  background:
    linear-gradient(135deg,rgba(255,184,28,.16),rgba(255,184,28,0) 34%),
    linear-gradient(105deg,#111 0%,#1d1d1b 52%,#29251f 100%);
  border-bottom:1px solid rgba(17,17,17,.16);
}

.hero-inner{
  position:relative;
  width:min(100%,1180px);
  margin:0 auto;
  padding:44px var(--space-page) 48px;
}

.hero-inner::after{
  content:"";
  position:absolute;
  right:var(--space-page);
  bottom:0;
  width:220px;
  height:5px;
  background:var(--brand);
  border-radius:999px 999px 0 0;
}

.hero-copy{
  max-width:780px;
}

.eyebrow,
.section-kicker,
.notice-label{
  color:var(--brand-strong);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  line-height:1.2;
  text-transform:uppercase;
}

.eyebrow{
  display:inline-flex;
  margin-bottom:14px;
  padding:7px 10px;
  color:#ffe6a4;
  background:rgba(255,184,28,.12);
  border:1px solid rgba(255,184,28,.28);
  border-radius:999px;
}

h1,
h2,
h3,
p{
  overflow-wrap:anywhere;
}

h1{
  max-width:760px;
  margin:0 0 14px;
  color:#fff;
  font-size:clamp(34px,5vw,56px);
  font-weight:800;
  line-height:1.02;
  letter-spacing:0;
}

.hero p{
  max-width:760px;
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:17px;
  line-height:1.7;
}

.hero strong{
  color:#fff;
  font-weight:800;
}

.email-tooltip{
  position:relative;
  display:inline-block;
  cursor:help;
  border-bottom:1px dotted rgba(255,255,255,.7);
}

.email-tooltip::after{
  content:attr(data-tooltip);
  position:absolute;
  left:50%;
  bottom:calc(100% + 12px);
  z-index:40;
  width:min(440px,82vw);
  padding:12px 14px;
  color:var(--text);
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  box-shadow:var(--shadow-raised);
  font-size:13px;
  font-weight:650;
  line-height:1.45;
  text-align:left;
  opacity:0;
  pointer-events:none;
  transform:translate(-50%,6px);
  transition:opacity .16s ease,transform .16s ease;
}

.email-tooltip::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:calc(100% + 5px);
  z-index:41;
  border:7px solid transparent;
  border-top-color:#fff;
  opacity:0;
  pointer-events:none;
  transform:translateX(-50%);
  transition:opacity .16s ease;
}

.email-tooltip:hover::after,
.email-tooltip:focus::after,
.email-tooltip:hover::before,
.email-tooltip:focus::before{
  opacity:1;
}

.email-tooltip:hover::after,
.email-tooltip:focus::after{
  transform:translate(-50%,0);
}

.page-shell{
  width:min(100%,1040px);
  margin:0 auto;
  padding:28px var(--space-page) 56px;
}

.notice-panel,
.progress-card,
.form-card,
.resources-panel{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
}

.notice-panel{
  padding:22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:
    linear-gradient(90deg,var(--brand-soft),#fff 58%);
  border-color:#ead8a4;
  border-left:5px solid var(--brand);
}

.notice-content{
  min-width:0;
}

.notice-panel h2,
.resources-heading h2,
.section-heading h2,
.generation-panel h2{
  margin:0;
  color:var(--ink);
  font-weight:800;
  line-height:1.18;
  letter-spacing:0;
}

.notice-panel h2{
  margin-top:6px;
  font-size:22px;
}

.notice-panel p,
.resources-heading p,
.section-heading p,
.generation-panel p,
.block-heading p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
  font-weight:600;
  line-height:1.55;
}

.button-link,
.resource-link{
  min-height:44px;
  padding:11px 16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:var(--ink);
  background:var(--brand);
  border:1px solid var(--brand);
  border-radius:var(--radius-sm);
  text-align:center;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  line-height:1.25;
  transition:transform .16s ease,box-shadow .18s ease,background .18s ease,border-color .18s ease;
}

.button-link:hover,
.resource-link:hover{
  background:var(--brand-strong);
  border-color:var(--brand-strong);
  box-shadow:0 10px 22px rgba(242,138,0,.22);
}

.secondary-link{
  flex:0 0 auto;
  color:var(--ink);
  background:#fff;
  border-color:#d6c592;
}

.secondary-link:hover{
  background:var(--brand);
  border-color:var(--brand);
}

.button-link:active,
.resource-link:active,
button:active{
  transform:translateY(1px);
}

.progress-card{
  margin-top:18px;
  padding:18px;
}

.stepper{
  position:relative;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  list-style:none;
}

.step{
  min-width:0;
  padding:14px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:12px;
  color:var(--muted);
  background:var(--surface-muted);
  border:1px solid transparent;
  border-radius:var(--radius-sm);
  transition:background .18s ease,border-color .18s ease,color .18s ease;
}

.step-index{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--graphite);
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:13px;
  font-weight:800;
}

.step-copy{
  min-width:0;
}

.step-copy span{
  display:block;
  color:inherit;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  line-height:1.2;
  text-transform:uppercase;
}

.step-copy strong{
  display:block;
  margin-top:3px;
  color:var(--graphite);
  font-size:14px;
  font-weight:800;
  line-height:1.25;
}

.step.is-current{
  color:#7a5600;
  background:var(--brand-soft);
  border-color:#ead28a;
}

.step.is-current .step-index{
  color:var(--ink);
  background:var(--brand);
  border-color:var(--brand);
}

.step.is-complete{
  color:var(--success);
  background:var(--success-soft);
  border-color:#cae7d3;
}

.step.is-complete .step-index{
  color:#fff;
  background:var(--success);
  border-color:var(--success);
}

.step.is-complete .step-index{
  font-size:0;
}

.step.is-complete .step-index::before{
  content:"\2713";
  font-size:15px;
}

.form-card{
  margin-top:18px;
  overflow:hidden;
}

.form-section{
  padding:34px;
  border-bottom:1px solid var(--line);
}

.form-section:last-of-type{
  border-bottom:0;
}

.section-heading{
  margin-bottom:28px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:16px;
  align-items:start;
}

.section-number{
  min-width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ink);
  background:var(--brand);
  border-radius:var(--radius-sm);
  font-size:14px;
  font-weight:800;
  letter-spacing:.06em;
}

.section-heading h2,
.generation-panel h2{
  margin-top:6px;
  font-size:26px;
}

.field-block + .field-block{
  margin-top:30px;
  padding-top:28px;
  border-top:1px solid var(--line);
}

.block-heading{
  margin-bottom:18px;
}

.block-heading h3{
  margin:0;
  color:var(--ink-soft);
  font-size:18px;
  font-weight:800;
  line-height:1.25;
}

.grid{
  display:grid;
  gap:18px;
}

.grid.two{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.cnpj-row{
  grid-template-columns:minmax(0,1fr) 168px;
  align-items:end;
}

.compact-field{
  max-width:430px;
}

.field{
  min-width:0;
  display:block;
}

.field-wide{
  grid-column:span 2;
}

.field-label{
  min-height:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  color:var(--ink-soft);
  font-size:14px;
  font-weight:800;
  line-height:1.35;
}

.field-label strong{
  color:var(--brand-strong);
  font-weight:800;
}

.field-label em{
  flex:0 0 auto;
  color:var(--muted);
  font-size:11px;
  font-style:normal;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

input,
select{
  width:100%;
  min-height:52px;
  margin-top:8px;
  padding:13px 14px;
  color:var(--text);
  background:#fff;
  border:1px solid var(--line-strong);
  border-radius:var(--radius-sm);
  font-size:15px;
  font-weight:650;
  outline:none;
  transition:border-color .18s ease,box-shadow .18s ease,background .18s ease;
}

select{
  cursor:pointer;
}


input::placeholder{
  color:#9a978f;
}

input:hover,
select:hover{
  border-color:#a99d88;
}

input:focus,
select:focus{
  border-color:var(--brand-strong);
  box-shadow:0 0 0 4px var(--focus);
}

input:disabled,
select:disabled,
button:disabled{
  cursor:not-allowed;
  opacity:.66;
}

.was-validated input[required]:valid,
.was-validated select[required]:valid{
  border-color:var(--success);
  box-shadow:0 0 0 3px rgba(35,118,74,.10);
}

.was-validated input:invalid,
.was-validated select:invalid,
input:invalid:focus,
select:invalid:focus{
  border-color:var(--error);
  box-shadow:0 0 0 4px rgba(180,35,24,.12);
}

small{
  display:block;
  margin-top:7px;
  color:var(--muted);
  font-size:12px;
  font-weight:600;
  line-height:1.45;
}

.choice-group{
  margin-bottom:20px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.choice-card{
  min-height:76px;
  padding:16px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  column-gap:13px;
  background:#fff;
  border:1px solid var(--line-strong);
  border-radius:var(--radius);
  cursor:pointer;
  transition:background .18s ease,border-color .18s ease,box-shadow .18s ease;
}

.choice-card:hover{
  background:#fffdf8;
  border-color:#a99d88;
}

.choice-card:has(input:checked){
  background:var(--brand-soft);
  border-color:var(--brand-strong);
  box-shadow:0 0 0 3px var(--focus);
}

.choice-card input{
  width:auto;
  min-height:0;
  margin:0;
  accent-color:var(--brand-strong);
}

.choice-card strong{
  display:block;
  color:var(--ink);
  font-size:14px;
  font-weight:800;
  line-height:1.25;
}

.choice-card small{
  margin-top:4px;
}

button{
  min-height:52px;
  padding:13px 18px;
  color:#fff;
  background:var(--ink-soft);
  border-radius:var(--radius-sm);
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  transition:background .18s ease,box-shadow .18s ease,transform .16s ease;
}

button:hover{
  background:#000;
  box-shadow:0 10px 22px rgba(17,17,17,.16);
}

.button-dark{
  white-space:nowrap;
}

.primary{
  min-width:252px;
  min-height:56px;
  padding:15px 26px;
  color:var(--ink);
  background:var(--brand);
  border:1px solid var(--brand);
  font-size:16px;
  box-shadow:0 14px 28px rgba(242,138,0,.22);
}

.primary:hover{
  background:var(--brand-strong);
  border-color:var(--brand-strong);
  box-shadow:0 16px 30px rgba(242,138,0,.28);
}

.msg{
  min-height:0;
  margin:14px 0 0;
  color:var(--muted);
  font-size:14px;
  font-weight:800;
}

.msg:not(:empty){
  margin:18px 0 0;
  padding:12px 14px;
  background:var(--surface-muted);
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
}

.msg.success{
  color:var(--success);
  background:var(--success-soft);
  border-color:#bfe3ca;
}

.msg.error{
  color:var(--error);
  background:var(--error-soft);
  border-color:#f0bab3;
}

.msg.info{
  color:#6a4a00;
  background:var(--brand-soft);
  border-color:#ead28a;
}

.warning{
  margin:18px 0;
  padding:15px 16px;
  color:#604300;
  background:var(--brand-soft);
  border:1px solid #ead28a;
  border-left:5px solid var(--brand);
  border-radius:var(--radius-sm);
  font-size:14px;
  font-weight:650;
  line-height:1.55;
}

.warning p{
  margin:0;
}

.warning p + p{
  margin-top:8px;
}

.declaration-warning{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.declaration-warning .resource-link{
  flex:0 0 auto;
}

.option-panel{
  margin-bottom:18px;
  padding:14px 16px;
  background:var(--surface-muted);
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
}

.check{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--ink-soft);
  font-size:14px;
  font-weight:800;
}

.check input{
  width:auto;
  min-height:0;
  margin:0;
  accent-color:var(--brand-strong);
}

.socios{
  margin-bottom:18px;
}

.outro-curso{
  max-width:540px;
  margin-top:18px;
}

.cursos-multi{
  margin-top:22px;
  padding:0;
  border:0;
}

.cursos-multi .field-label{
  margin-bottom:10px;
  padding:0;
}

.cursos-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:8px 18px;
  padding:14px 18px;
  background:var(--surface-muted);
  border:1px solid var(--line);
  border-radius:var(--radius);
}

@media (max-width:600px){
  .cursos-grid{ grid-template-columns:1fr; }
}

.curso-option{
  display:flex;
  align-items:center;
  gap:10px;
  padding:6px 4px;
  font-size:14px;
  color:var(--ink);
  cursor:pointer;
  user-select:none;
  line-height:1.35;
}

.curso-option input[type="checkbox"]{
  flex:0 0 auto;
  width:18px;
  height:18px;
  margin:0;
  accent-color:var(--brand-strong);
  cursor:pointer;
}

.curso-option:hover{
  color:var(--brand-strong);
}

.curso-option:has(input:checked){
  font-weight:700;
  color:var(--ink-soft);
}

.cursos-erro{
  margin:10px 4px 0;
  font-size:13px;
  font-weight:700;
  color:var(--error);
}

.was-validated .cursos-multi[data-invalid="true"] .cursos-grid{
  border-color:var(--error);
  background:var(--error-soft);
}

.generation-panel{
  padding:28px 34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  background:linear-gradient(90deg,#1b1b19,#27231d);
  border-top:1px solid rgba(255,255,255,.08);
}

.generation-panel h2{
  color:#fff;
}

.generation-panel p{
  max-width:610px;
  color:rgba(255,255,255,.72);
}


.resources-panel{
  margin-top:18px;
  padding:28px 30px;
  box-shadow:none;
}

.resources-heading{
  margin-bottom:18px;
}

.resources-heading h2{
  margin-top:6px;
  font-size:24px;
}

.support-list{
  display:grid;
  gap:12px;
}

.support-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
}

.support-item summary{
  min-height:54px;
  padding:15px 16px;
  color:var(--ink-soft);
  cursor:pointer;
  font-size:15px;
  font-weight:800;
  list-style-position:inside;
}

.support-item[open] summary{
  border-bottom:1px solid var(--line);
}

.support-content{
  padding:16px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}

.support-item p{
  margin:0;
  padding:0 16px 16px;
  color:var(--muted);
  font-size:13px;
  font-weight:600;
  line-height:1.5;
}

.resource-link{
  align-self:flex-start;
  color:var(--ink);
  background:#fff;
  border-color:var(--line-strong);
  box-shadow:none;
}

.resource-link:hover{
  color:var(--ink);
  background:var(--brand);
  border-color:var(--brand);
}

.footer{
  color:#dcdcdc;
  background:var(--ink);
  border-top:5px solid var(--brand);
}

.footer-inner{
  width:min(100%,1180px);
  margin:0 auto;
  padding:18px var(--space-page);
  display:flex;
  justify-content:space-between;
  gap:16px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.loading-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(251,250,247,.94);
}

.loading-card{
  width:min(420px,100%);
  padding:32px 28px;
  text-align:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-raised);
}

.loading-logo{
  max-width:230px;
  max-height:86px;
  margin-bottom:22px;
  object-fit:contain;
}

.loading-spinner{
  width:56px;
  height:56px;
  margin:0 auto 18px;
  border:6px solid #eee9df;
  border-top-color:var(--brand);
  border-radius:50%;
  animation:loadingSpin .9s linear infinite;
}

.loading-card h3{
  margin:0 0 8px;
  color:var(--ink);
  font-size:22px;
  font-weight:800;
}

.loading-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.5;
}

.modal-overlay{
  position:fixed;
  inset:0;
  z-index:10000;
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(17,17,17,.74);
}

.modal-card{
  position:relative;
  width:min(760px,100%);
  max-height:min(82vh,760px);
  overflow:auto;
  padding:32px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-raised);
}

.modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:40px;
  min-height:40px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ink);
  background:#fff;
  border:1px solid var(--line-strong);
  border-radius:var(--radius-sm);
  font-size:28px;
  line-height:1;
}

.modal-close:hover{
  color:#fff;
  background:var(--ink);
}

.modal-card h2{
  margin:0 48px 12px 0;
  color:var(--ink);
  font-size:26px;
  font-weight:800;
  line-height:1.2;
}

.modal-card h3{
  margin:22px 0 8px;
  color:var(--ink-soft);
  font-size:18px;
  font-weight:800;
  line-height:1.25;
}

.modal-card p{
  margin:10px 0;
  color:var(--graphite);
  font-size:15px;
  line-height:1.6;
}

.modal-intro{
  color:var(--muted);
  font-weight:650;
}

.modal-card hr{
  margin:24px 0;
  border:0;
  border-top:1px solid var(--line);
}

.hidden{
  display:none !important;
}

@keyframes loadingSpin{
  to{transform:rotate(360deg)}
}

@media (prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    scroll-behavior:auto !important;
    transition:none !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
  }
}

@media(max-width:920px){
  .stepper{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .generation-panel{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media(max-width:760px){
  body{
    font-size:15px;
  }

  .topbar-inner{
    min-height:auto;
    align-items:flex-start;
    flex-direction:column;
    gap:16px;
  }

  .portal-area{
    width:100%;
    align-items:flex-start;
    justify-content:flex-start;
    flex-direction:column;
    gap:10px;
  }

  .portal-area p{
    max-width:none;
    text-align:left;
  }

  .portal-area a{
    width:100%;
  }

  .hero-inner{
    padding-top:34px;
    padding-bottom:36px;
  }

  .hero-inner::after{
    left:var(--space-page);
    right:auto;
    width:150px;
  }

  h1{
    font-size:clamp(32px,11vw,42px);
  }

  .hero p{
    font-size:15px;
  }

  .page-shell{
    padding-top:20px;
    padding-bottom:40px;
  }

  .notice-panel{
    align-items:flex-start;
    flex-direction:column;
    padding:20px;
  }

  .button-link,
  .resource-link{
    width:100%;
  }

  .progress-card{
    padding:14px;
  }

  .step{
    padding:12px;
  }

  .form-section{
    padding:26px 18px;
  }

  .section-heading{
    grid-template-columns:1fr;
    gap:12px;
  }

  .section-number{
    width:48px;
  }

  .section-heading h2,
  .generation-panel h2{
    font-size:23px;
  }

  .grid.two,
  .cnpj-row,
  .choice-group{
    grid-template-columns:1fr;
  }

  .field-wide{
    grid-column:span 1;
  }

  .field-label{
    align-items:flex-start;
    flex-direction:column;
    gap:3px;
  }

  .field-label em{
    align-self:flex-start;
  }

  .declaration-warning{
    align-items:flex-start;
    flex-direction:column;
  }

  .generation-panel{
    padding:24px 18px;
  }

  .primary{
    width:100%;
    min-width:0;
  }

  .resources-panel{
    padding:24px 18px;
  }

  .support-content{
    align-items:flex-start;
    flex-direction:column;
  }

  .footer-inner{
    align-items:flex-start;
    flex-direction:column;
  }

  .modal-card{
    padding:26px 20px;
  }

  .modal-card h2{
    font-size:23px;
  }
}

@media(max-width:520px){
  .brand-lockup{
    align-items:flex-start;
  }

  .topbar-logo{
    width:50px;
    height:50px;
  }

  .stepper{
    grid-template-columns:1fr;
  }

  input,
  select,
  button{
    min-height:50px;
  }
}

