.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 30%),
    radial-gradient(circle at right center, rgba(56, 189, 248, 0.16), transparent 28%),
    #0f172a;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.08;
  margin: 18px 0;
  color: #ffffff;
  max-width: none;
}

.hero-description {
  font-size: 18px;
  color: #cbd5e1;
  max-width: min(72ch, 100%);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-highlights li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 600;
}

.hero-card {
  display: flex;
  justify-content: flex-end;
}

.mini-card {
  width: 100%;
  max-width: 390px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.mini-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffffff;
}

.result-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  color: #cbd5e1;
}

.result-row strong {
  color: #22c55e;
}

.mini-card-text {
  margin-top: 18px;
  color: #cbd5e1;
  font-size: 15px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}



.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-weight: 800;
  margin-bottom: 16px;
}

.step-card h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 22px;
}

.step-card p {
  color: #cbd5e1;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.10), rgba(56, 189, 248, 0.06));
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
}

.cta-box h2 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 32px;
}

.cta-box p {
  color: #cbd5e1;
  max-width: min(72ch, 100%);
}

.cta-box .nav-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.18);
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

}

.step-card,
.content-card,
.benefit-card {
  background: #111827;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 20px;
}

.step-card {
  padding: 28px;
}

.content-card,
.benefit-card {
  padding: 24px;
}

.step-card {
  padding: 28px;
}

.content-card,
.benefit-card {
  padding: 24px;
}

.content-card h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 22px;
}

.content-card p {
  color: #cbd5e1;
}

@media (max-width: 900px) {
  .hero-grid,
  .steps-grid,
  .content-grid,
  .cta-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .cta-box {
    padding: 24px;
  }

  .cta-box h2 {
    font-size: 26px;
  }
}
.content-link {
  display: inline-block;
  margin-top: 14px;
  color: #7dd3fc;
  font-weight: 700;
}

.content-link:hover {
  color: #bae6fd;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}



.benefit-card h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #cbd5e1;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.highlight-item {
  padding: 22px;
  border-radius: 20px;
  background: #0b1220;
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.highlight-item strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 10px;
}

.highlight-item p {
  color: #cbd5e1;
}

@media (max-width: 900px) {
  .benefits-grid,
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

#comece-aqui {
  scroll-margin-top: 110px;
}

#comece-aqui .section-heading {
  max-width: min(72ch, 100%);
}

#comece-aqui .content-grid {
  margin-top: 8px;
}

#comece-aqui .content-card {
  position: relative;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

#comece-aqui .content-card:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, 0.32);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

#comece-aqui .content-card::before {
  content: "Comece por aqui";
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cta-box {
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(34,197,94,0.08), transparent 60%);
  pointer-events: none;
}

@media (max-width: 700px) {
  .hero {
    padding: 72px 0 56px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-highlights {
    gap: 10px;
  }

  .hero-highlights li {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .mini-card {
    padding: 22px;
  }

  .step-card,
  .content-card,
  .benefit-card,
  .highlight-item {
    padding: 20px;
  }

  .cta-box {
    gap: 18px;
  }

  .cta-box .nav-highlight {
    display: inline-block;
    width: 100%;
    text-align: center;
    min-height: 48px;
    padding: 12px 16px;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .content-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 30px;
  }

  .mini-card h2 {
    font-size: 22px;
  }
}

/* =========================
   Etapa 2 — confiança e preview
========================= */

.mini-card-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.result-row--primary {
  background: rgba(34, 197, 94, 0.06);
  margin: 0 -12px;
  padding: 14px 12px;
  border-radius: 12px;
  border-bottom: none;
}

.result-row--primary + .result-row {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trust-card {
  padding: 24px;
  border-radius: 20px;
  background: #111827;
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.trust-card h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 10px;
}

.trust-card p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.55;
}

.trust-footnote {
  margin-top: 24px;
  color: #94a3b8;
  font-size: 15px;
  text-align: center;
}

.trust-footnote a {
  color: #7dd3fc;
  font-weight: 700;
}

.product-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-compare-card {
  padding: 28px;
  border-radius: 22px;
  background: #111827;
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.product-compare-card--highlight {
  border-color: rgba(34, 197, 94, 0.28);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.08), rgba(17, 24, 39, 0.95));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.product-compare-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-compare-tag--premium {
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
}

.product-compare-card h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 16px;
}

.product-compare-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.product-compare-list li {
  position: relative;
  padding-left: 22px;
  color: #cbd5e1;
  line-height: 1.5;
}

.product-compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.product-compare-cta {
  margin-top: 28px;
  text-align: center;
}

.product-compare-cta .btn {
  min-width: min(100%, 320px);
}

@media (max-width: 900px) {
  .trust-grid,
  .product-compare-grid {
    grid-template-columns: 1fr;
  }
}