@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@400;500;600&display=swap');

:root{
  --marfim:#F6F1E7;
  --papel:#FFFDF8;
  --verde:#1C3029;
  --verde2:#2C4A3E;
  --ocre:#B8843C;
  --ocre-luz:#E8D5B5;
  --tinta:#14201B;
  --cinza:#68716C;
  --linha:#DDD5C6;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--marfim);
  color:var(--tinta);
  font-family:Montserrat,system-ui,-apple-system,sans-serif;
  line-height:1.6;
}
.page{max-width:880px;margin:0 auto;padding:0 20px 72px}
.hero{
  position:relative;
  padding:72px 0 54px;
  min-height:520px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.brand{
  font-size:.78rem;
  letter-spacing:.18em;
  font-weight:600;
  color:var(--ocre);
  margin-bottom:18px;
}
h1,h2{
  font-family:"Cormorant Garamond",Georgia,serif;
  color:var(--verde);
}
h1{
  margin:0 0 18px;
  font-size:clamp(3rem,7vw,5.8rem);
  line-height:.95;
  max-width:760px;
  letter-spacing:-.03em;
}
.lead{font-size:1.18rem;max-width:650px;margin:0 0 12px}
.sublead{max-width:650px;margin:0 0 4px;color:var(--cinza)}
.enso{
  position:absolute;
  width:86px;height:86px;
  right:4px;bottom:22px;
  border:5px solid var(--ocre);
  border-left-color:transparent;
  border-radius:50%;
  transform:rotate(-12deg);
  opacity:.9;
}
.card{
  background:var(--papel);
  border:1px solid var(--linha);
  padding:30px;
  margin:0 0 20px;
  border-radius:8px;
}
.card.highlight{border-left:5px solid var(--ocre)}
.step{
  font-size:.75rem;
  letter-spacing:.16em;
  color:var(--ocre);
  font-weight:600;
}
h2{
  margin:.25rem 0 .7rem;
  font-size:2.3rem;
  line-height:1.1;
}
label,legend{
  display:block;
  margin:18px 0 8px;
  font-weight:600;
  font-size:.95rem;
}
input,textarea{
  width:100%;
  border:1px solid #cfc6b5;
  border-radius:6px;
  padding:14px 15px;
  background:#fff;
  color:var(--tinta);
  font:inherit;
}
textarea{resize:vertical}
input:focus,textarea:focus{
  outline:2px solid var(--ocre-luz);
  border-color:var(--ocre);
}
.grid-2,.grid-3{display:grid;gap:12px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
fieldset{border:0;padding:0;margin:18px 0 0}
.option,.consent{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:400;
  margin:10px 0;
}
.option input,.consent input{
  width:auto;
  margin-top:5px;
}
button{
  width:100%;
  margin-top:22px;
  border:0;
  border-radius:6px;
  background:var(--verde);
  color:var(--marfim);
  font:600 .9rem Montserrat,sans-serif;
  letter-spacing:.08em;
  padding:16px 20px;
  cursor:pointer;
}
button:hover{background:var(--verde2)}
button:disabled{opacity:.6;cursor:not-allowed}
.status{margin-top:14px;font-size:.95rem}
.status.ok{color:var(--verde2)}
.status.error{color:#8C3A2E}

@media (max-width:700px){
  .hero{min-height:420px;padding-top:48px}
  .card{padding:22px}
  .grid-2,.grid-3{grid-template-columns:1fr}
  h2{font-size:2rem}
  .enso{width:64px;height:64px}
}
