/* /comecar/*.html — landings de conversão pós-calculadora */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #F8FAFC;
  color: #0F172A;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  max-width: 640px;
  margin: 0 auto;
}
.topo img { height: 26px; }
.topo .voltar {
  color: #64748B;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.topo .voltar:hover { color: #0F766E; }

.pv {
  max-width: 480px;
  margin: 0 auto;
  padding: 12px 22px 60px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F0FDFA;
  color: #0F766E;
  border: 1px solid #99F6E4;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  color: #0F172A;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.hero h1 mark {
  background: #0F766E;
  color: #fff;
  padding: 0 8px;
  border-radius: 6px;
  font-weight: 800;
}
.hero .sub {
  color: #64748B;
  font-size: 14px;
  font-style: italic;
}

.story {
  background: linear-gradient(180deg, #F0FDFA 0%, #F8FAFC 100%);
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 20px 18px;
  margin: 24px 0;
  font-size: 14.5px;
  color: #334155;
}
.story p { margin-bottom: 10px; }
.story p:last-child { margin-bottom: 0; }
.story strong { color: #0F766E; font-weight: 700; }
.story .num { font-weight: 800; color: #0F172A; }
.story .pergunta {
  font-size: 17px;
  font-weight: 800;
  color: #0F172A;
  margin-top: 12px;
}

.descobre, .passos {
  margin: 22px 0;
}
.descobre h2, .passos h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #64748B;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.descobre ul {
  list-style: none;
}
.descobre li {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 10px;
}
.descobre li::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: #0F766E;
  border-radius: 50%;
}
.passos ol {
  list-style: none;
  counter-reset: passo;
}
.passos li {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 12px;
}
.passos li .n {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: #0F766E;
  color: #fff;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}

.cta {
  display: block;
  width: 100%;
  background: #0F766E;
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  padding: 16px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 28px;
  transition: background 0.15s;
  box-shadow: 0 6px 20px -6px rgba(15,118,110,0.4);
}
.cta:hover { background: #0D5F58; }

.selos {
  text-align: center;
  font-size: 12px;
  color: #64748B;
  margin-top: 14px;
}
.selos span { margin: 0 5px; }

.rodape {
  text-align: center;
  color: #94A3B8;
  font-size: 12px;
  margin-top: 40px;
  padding: 20px;
}

@media (max-width: 380px) {
  .hero h1 { font-size: 22px; }
}
