.banner {
  background-image: url('../image/image_banner/banner_news.jpg');
}


/* Seção de conteúdo */
.section-dica {
  text-align: center;
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-dica {
  font-size: 4rem;
  color: black;
  display: none;
}

.subtitle-dica {
  font-size: 2.5rem;
  margin-bottom: 20px;
  width: 80%;
}

.text-dica {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 20px;
  width: 90%;
}

/* Lista estilizada */
.styled-list-dica {
  list-style: none;
  padding-left: 0;
}

.styled-list-dica li {
  position: relative;
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 1.5rem;
  text-align: center;
}

.styled-list-dica li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #f70000;
  font-weight: bold;
  font-size: 1.2rem;
}

/*Propaganda Newsletter*/
.card_formulario {
  width: 100%;
  max-width: 700px;
  height: 350px;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  transition: transform 0.3s ease;
  text-align: center;
  overflow: hidden;
}

.card_formulario:hover {
  transform: scale(1.03);
}

.card_formulario a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 2rem;
}

.card_formulario_content h3 {
  margin-top: 0;
  font-size: 1.4rem;
  color: #333;
}

.card_formulario_content p {
  font-size: 1rem;
  color: #555;
  margin: 1rem 0;
}

.botao_card_formulario {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.botao_card_formulario:hover {
  background-color: #0056b3;
}

