@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f7f7f7;
  color: #111;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* HEADER */
.logo {
  font-size: 28px;
  font-weight: 700;
  color: #22c55e;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 60px;
}

.tag {
  background: #e8f5ec;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 20px;
}

h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.green {
  color: #22c55e;
}

.hero p {
  color: #555;
  margin-bottom: 25px;
}

.price span {
  font-size: 12px;
  color: #888;
}

.price h2 {
  font-size: 32px;
  margin-top: 5px;
}

/* BOTÕES */
.btn-primary {
  background: #22c55e;
  color: white;
  padding: 16px 26px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-primary:hover {
  background: #16a34a;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #ccc;
  padding: 16px 26px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
}

/* CONTAINER DOS BOTÕES */
.actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

/* IMAGEM HERO */
.hero-img {
  background: #cfe4d7;
  border-radius: 20px;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BENEFITS */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  margin-top: 40px;
  gap: 20px;
}

.benefits div {
  font-size: 14px;
  color: #444;
}

.benefits b {
  display: block;
  margin-bottom: 5px;
  color: #111;
}

/* TESTIMONIAL */
.testimonial {
  text-align: center;
  margin-top: 60px;
}

.testimonial img {
  width: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* PROBLEM / SOLUTION */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}

.problem, .solution {
  padding: 30px;
  border-radius: 16px;
}

.problem {
  background: #fdecec;
}

.solution {
  background: #ecfdf5;
}

.problem h2, .solution h3 {
  margin-bottom: 15px;
}

.problem ul, .solution ul {
  list-style: none;
  margin-top: 10px;
}

.problem li, .solution li {
  margin-bottom: 10px;
}

/* FINAL */
.final {
  text-align: center;
  margin-top: 60px;
}

.final h2 {
  font-size: 28px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 32px;
  }

  .benefits {
    grid-template-columns: 1fr 1fr;
  }

  .problem-solution {
    grid-template-columns: 1fr;
  }
}

/* COUNTER */
.stats-strip {
  padding: 10px 20px 0;
}

.stats-box {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.big-number {
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -2px;
  color: #22c55e;
}

.stats-box p {
  margin-top: 8px;
  font-size: 18px;
  color: #444;
}

@media (max-width: 768px) {
  .big-number {
    font-size: 42px;
  }

  .stats-box p {
    font-size: 16px;
  }
}