body {
  font-family: "Montserrat", sans-serif;
  background: #fff8f8;
  color: #f1f1f1;
  margin: 0;
  padding: 0;
}

main {
  line-height: 1.6;
}

.titulo-dicas {
  text-align: center;
  color: black;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 2.2rem;
  margin-bottom: 5%;
}

h1 span {
  color: rgb(104, 163, 14);
}

.legenda-inicial {
  font-size: 1.2rem;
  color: black;
  margin-bottom: 3%;
  text-align: justify;
}

section {
  padding: 1.5rem;
  max-width: 900px;
  margin: auto;
}

.lista-dicas span strong {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.lista-dicas p {
  font-size: 0.95rem;
  line-height: 1.4;
}
h2 {
  color: #ffd166;
  margin-top: 2rem;
}
.lista-dicas {
  list-style: none;
  padding: 0;
}
.lista-dicas li {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #1d1d1d;
  border-left: 5px solid #00b4d8;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lista-dicas li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.checklist {
  background: linear-gradient(135deg, #1f1f1f, #2b2b2b);
  border-radius: 16px;
  padding: 20px;
  margin: 20px auto;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin-top: 15%;
}

.checklist-header {
  background: #27ae60;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 8px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(39, 174, 96, 0.5);
}

.checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  display: flex;
  align-items: center;
  font-family: "Montserrat";
  gap: 8px;
  font-size: 0.95rem;
  margin: 8px 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, background 0.2s ease;
}

.checklist li:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.1);
}

.checklist li.success {
  color: #2ecc71;
  font-weight: 500;
}

.checklist li.error {
  color: #e74c3c;
  font-weight: 500;
}
.produtos {
  margin: 1.5rem auto;

  text-align: center;
}
.produtos h2 {
  color: #ef476f;
  font-weight: 700;
}
.carousel {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
}
.produto {
  flex: 0 0 200px;
  background: #1d1d1d;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

.produto-imagem {
  width: 50rem;
  margin-bottom: 3%;
  border-radius: 10px;
}

.botao-produto {
  font-weight: bold;
  font-size: 1.25rem;
  padding: 0.8rem 5rem;
  text-align: center;
  text-transform: uppercase;
  background-color: #06d6a0;
  text-decoration: none;
  color: #f1f1f1;
  border-radius: 15px;
  margin-bottom: 3%;
}

.legenda-final {
  font-size: 1.2rem;
  color: black;
  margin-bottom: 1%;
  text-align: center;
}

.cta {
  text-align: center;
  margin: 2rem 0;
}
.cta a {
  background: #06d6a0;
  color: #fefff0;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s;
}
.cta a:hover {
  background: #118ab2;
  color: #fff;
}

@media screen and (max-width: 750px) {
  .titulo-dicas {
    font-size: 1.6rem;
  }

  .lista-dicas {
    font-size: 0.9rem;
    text-align: justify;
  }

  .legenda-inicial,
  .legenda-final {
    font-size: 0.88rem;
  }

  .botao-produto {
    font-size: 0.955rem;
    padding: 0.7rem 2.7rem;
  }

  .produto-imagem {
    width: 22rem;
    margin-bottom: 3%;
  }

  .section span strong {
    font-size: 0.94rem;
  }

  .checklist {
    max-width: 350px;
    margin-top: 30%;
  }

  .checklist li {
    font-size: 0.88rem;
  }
}
