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

body {
  background: #0b0b0e;
  color: #e6e6e6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
}

/* HERO */
.t-hero {
  background: radial-gradient(circle at top, #1c1c26, #0b0b0e);
  padding: 90px 0;
  text-align: center;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffffff;
}

.hero-sub {
  margin-top: 18px;
  font-size: 1.15rem;
  color: #cfcfcf;
}

.hero-impact {
  margin-top: 22px;
  font-size: 1rem;
  color: #9ef0b0;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 32px;
  padding: 18px 32px;
  border-radius: 12px;
  font-weight: 800;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #1db954, #1ed760);
  color: #000;
  box-shadow: 0 0 30px rgba(30, 215, 96, 0.45);
}

/* SECTION */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 22px;
}

.section-sub {
  color: #bdbdbd;
  max-width: 850px;
  margin-bottom: 30px;
}

/* LISTS */
.empathy-list,
.features-list {
  list-style: none;
}

.empathy-list li {
  margin-bottom: 12px;
  color: #d4d4d4;
}

.features-list {
  display: grid;
  gap: 16px;
}

.features-list li {
  background: #14141c;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #1f1f2a;
}

/* HOW */
.how-grid {
  display: grid;
  gap: 18px;
}

.how-step {
  background: #14141c;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #1f1f2a;
}

.how-step strong {
  color: #1ed760;
}

/* ALERT */
.alert {
  background: #111118;
  padding: 30px;
  border-left: 4px solid #1ed760;
  border-radius: 10px;
}

/* FAQ DISCRETO */
.faq {
  margin-top: 40px;
}

.faq details {
  background: #12121a;
  border: 1px solid #1f1f2a;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 14px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #ffffff;
}

.faq p {
  margin-top: 10px;
  color: #cfcfcf;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
