:root{
  --bg:#f6f7f8;
  --card:#ffffff;
  --text:#18212a;
  --muted:#5a6b7b;
  --line:#e7ebef;
  --green:#009b63;
  --green2:#009b63;
  --soft:#eaf4ec;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --radius: 14px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

.page{
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 60px;
}

.hero{
  text-align:center;
  margin-bottom: 18px;
}

.brand{
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom: 15px;
}


.brand-mark{
  width: 65px;
  height: 65px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

.brand-mark:before{
  content:"";
  position:absolute; inset:9px;
  border-radius:50%;
  background:#ffffff;
  opacity:.25;
  display: none;
}


.brand-name {
  font-weight:700; 
  letter-spacing:.2px
}

.brand-a {
  color:#009b63;
  font-size: 40px;
  
}

.hero-title{
  margin: 10px 0 4px;
  font-size: 40px;
  letter-spacing:-.6px;
   font-weight:500; 
}
.hero-subtitle{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.hero-note{
  margin: 10px 0 16px;
  color: var(--text);
  font-size: 16px;
}

.content{ 
  margin-top: 14px; 
  margin-bottom: 25px;
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  text-align:left;
}

.card--soft{
  background: var(--soft);
  border-color: #d6ead9;
  box-shadow: none;
  max-width: 860px;
  margin: 0 auto 14px;
}

.card-title{
  margin: 0 0 12px;
  font-size: 18px;
  margin-bottom: 25px;
}
.card-text{
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.steps{
  display:flex;
  justify-content:center;
  gap:10px;
  margin: 12px 0 0;
}

.step{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  opacity:.9;
}
.step:disabled{ cursor:not-allowed; opacity:.5; }
.step.is-active{
  border-color: #cfe8d2;
  background: #f0faf1;
}
.step-num{
  width: 26px; height: 26px;
  display:grid; place-items:center;
  border-radius: 50%;
  background: #eaf4ec;
  color: var(--green);
  font-weight: 700;
}
.step-label{ font-weight: 650; color: #1d2b33; }

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 760px){
  .grid{ grid-template-columns: 1fr; }
  .hero-title{ font-size: 34px; }
}



.select-tipo {
  margin-bottom: 15px;
}

.field label{
  display:block;
  font-weight: 650;
  margin-bottom: 9px;
}
.req{ color:#b23b3b; font-weight: 800; }
.hint{
  margin-top:6px;
  color:var(--muted);
  font-size: 13px;
}

input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  outline:none;
  font-size: 15px;
  
}

textarea{ 
  resize: none; 
}



input:focus, select:focus, textarea:focus{
  border-color: #b8dbbe;
  box-shadow: 0 0 0 3px rgba(46,125,50,.12);
}

.stack{ display:grid; gap: 10px; }

.checkline{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin: 12px 0 6px;
  margin-top: 30px;
  color: #1f2b33;
}
.checkline input{ width: 18px; height: 18px; margin-top: 3px; }

.actions{
  display:flex;
  gap: 10px;
  justify-content:flex-end;
  flex-wrap: wrap;
  margin: 35px 30px;
  
}

.btn{
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
}

.btn:hover {
  background: #000000;
  color: #fff;
}

.btn:disabled{ opacity:.6; cursor:not-allowed; }

.btn-primary{
  background: #009b63;
  border-color: #009b63;
  color:#fff;
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
}
.btn-primary:hover{ filter: brightness(.98); }

.btn-ghost{
  background:#f2f4f7;
}

.footer-note{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align:center;
}

.section-title{
  margin: 16px 0 10px;
  font-size: 14px;
  color:#1f2b33;
  font-weight: 800;
}
.muted{ color: var(--muted); font-weight: 600; }

.attachments{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 760px){ .attachments{ grid-template-columns: 1fr; } }

.filebox{
  border: 1px solid #cfe8d2;
  background: #f2fbf3;
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.filebox input{ display:none; }
.filetitle{
  font-weight: 850;
  color: var(--green2);
}
.filesub{
  color: var(--muted);
  font-size: 13px;
}

.counter{
  display:flex;
  justify-content:space-between;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.alert{
  max-width: 860px;
  margin: 0 auto 12px;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);

}

.alert.error{ border-color:#f0caca; background:#fff5f5; }

.alert.success{ border-color:#cfe8d2; background:#f2fbf3; }

.hidden{ display:none !important; }


.honeypot{
  position:absolute;
  left:-9999px;
  opacity:0;
  height:0;
}
