:root{
  --bg: #f6f3ea;
  --paper: #fbfaf7;
  --text: #1f2328;
  --muted: #5d6773;
  --brand: #3e6b4f;
  --brand-2: #2f4f3a;

  --border: rgba(0,0,0,.10);
  --border-soft: rgba(0,0,0,.07);

  --radius: 16px;
  --max: 980px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height:1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a{ color:inherit; text-decoration:none; }
.container{ max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,243,234,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.logo{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  display:grid;
  place-items:center;
  overflow:hidden;
  flex:0 0 auto;
  background: rgba(251,250,247,.55);
}
.logo img{ width:100%; height:100%; object-fit: contain; display:block; }
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
  min-width:0;
}
.brand-text strong{
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-text span{
  font-size: 12.5px;
  font-weight: 650;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
}
.nav a{
  padding: 9px 10px;
  border-radius: 12px;
  transition: background .18s ease, color .18s ease;
}
.nav a:hover{
  background: rgba(62,107,79,.07);
  color: var(--brand-2);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: transparent;
  font-weight: 850;
  font-size: 13.5px;
  cursor:pointer;
  transition: transform .12s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.55);
  border-color: var(--border);
}
.btn-primary{
  background: var(--brand);
  color: #fff;
  border-color: rgba(0,0,0,0);
}
.btn-primary:hover{ background: var(--brand-2); }
.btn[disabled]{ opacity:.55; cursor:not-allowed; transform:none; }

.section{ padding: 36px 0; }
.rule{ height:1px; background: var(--border-soft); border:0; margin:0; }

/* Hero */
.hero{ padding: 46px 0 30px; }
.hero-wrap{ display:grid; grid-template-columns: 1fr; gap: 18px; }
.hero-block{
  position: relative;
  padding-left: 18px;
}
.hero-block::before{
  content:"";
  position:absolute;
  left:0;
  top:6px;
  bottom:6px;
  width: 2px;
  background: rgba(62,107,79,.30);
  border-radius: 999px;
}

.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .55px;
  text-transform: uppercase;
  color: var(--brand-2);
}
.kicker::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(62,107,79,.18);
  border: 1px solid rgba(62,107,79,.25);
  display:inline-block;
}

#barney{
      fill:#558e6b;
      width:200px;
      height:auto;
      display:block;
      margin:0 auto;
    }

    /* Mantém as partes vazadas do seu SVG */
    #barney .cls-1{
      fill:none !important;
    }

h1{
  margin: 14px 0 6px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 800;
  font-size: clamp(30px, 4.3vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.9px;
}
.subtitle{
  margin: 0 0 14px;
  color: var(--brand-2);
  font-weight: 850;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.lead{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 74ch;
}
.hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Para quem é / Nota */
.who{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.who h3{
  margin:0 0 6px;
  font-size: 13px;
  letter-spacing: .35px;
  text-transform: uppercase;
  color: var(--brand-2);
  font-weight: 950;
}
.who p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
  max-width: 80ch;
  font-weight: 650;
}
.who .microline{
  margin-top: 10px;
  color: var(--brand-2);
  font-weight: 850;
  font-size: 12.5px;
}

/* Section titles */
.section-title{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap: 12px;
  margin-bottom: 10px;
}
.section-title h2{
  margin:0;
  font-size: 18px;
  letter-spacing: -0.3px;
  font-weight: 900;
}
.section-title span{
  color: var(--muted);
  font-weight: 850;
  font-size: 12.5px;
}

/* Benefits */
.benefits{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}
.benefit{
  display:flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border-soft);
}
.benefit:first-child{ border-top: 0; }
.dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(62,107,79,.18);
  border: 1px solid rgba(62,107,79,.25);
  margin-top: 6px;
  flex: 0 0 auto;
}
.benefit strong{
  display:block;
  font-size: 14px;
  letter-spacing: -0.2px;
  margin-bottom: 2px;
  font-weight: 900;
}
.benefit p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  max-width: 85ch;
}

/* Form */
.form-shell{
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: rgba(251,250,247,.55);
  padding: 18px;
}
.form-head{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
  align-items:baseline;
  margin-bottom: 12px;
}
.form-head h2{
  margin:0;
  font-size: 18px;
  letter-spacing: -0.3px;
  font-weight: 900;
}
.form-head p{
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
  max-width: 70ch;
}

.consent{
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,.50);
  margin: 12px 0 14px;
}
.check{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  margin: 10px 0;
}
.check input{
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--brand);
}
.check span{
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--text);
  font-weight: 750;
}
.micro{
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 650;
}

.hp{ position:absolute; left:-9999px; top:-9999px; height:1px; width:1px; overflow:hidden; }
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label.field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin: 8px 0;
}
.field span{
  font-size: 12px;
  font-weight: 950;
  color: var(--brand-2);
  letter-spacing: .55px;
  text-transform: uppercase;
}
input, select, textarea{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,.70);
  font: inherit;
  color: var(--text);
}
input:focus, select:focus, textarea:focus{
  outline: 2px solid rgba(62,107,79,.20);
  border-color: rgba(62,107,79,.25);
}
.err{
  min-height: 14px;
  font-size: 12px;
  color: #9b1c1c;
  font-weight: 850;
}
.form-actions{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
}
.status{
  font-weight: 850;
  font-size: 13px;
  color: var(--brand-2);
}

/* FAQ */
details{
  border-top: 1px solid var(--border-soft);
  padding: 12px 0;
}
details:last-child{ border-bottom: 1px solid var(--border-soft); }
summary{
  cursor:pointer;
  font-weight: 950;
  color: var(--brand-2);
  list-style:none;
}
summary::-webkit-details-marker{ display:none; }
details p{
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
  max-width: 85ch;
}

/* Footer */
footer{
  padding: 26px 0 40px;
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
}
.footer-inner a{
  color: var(--brand-2);
  border-bottom: 1px dashed rgba(62,107,79,.35);
}

@media (max-width: 920px){
  .nav{ display:none; }
  .who{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .hero-actions{ gap: 8px; }
}
