#title_tips{
  font-size: 3rem;
  color: #000000;
}

.banner {
  position: relative;
  width: 100%;
  height: 500px;
  background-image: url('../image/jovens_trabalhando.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax aqui */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 0;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* escurece o fundo */
  z-index: 1;
}

.conteudo-banner {
  position: relative;
  z-index: 2;
}

.logo-fake {
  font-size: 10rem;
  font-weight: bold;
  color: #ffff;
  text-shadow: 0 0 10px #ffffff;
}
.banner-title {
  font-size: 3rem;
  font-family: 'Title', Arial, sans-serif;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.banner-subtitle {
  font-size: 1.4rem;
  color: #f0f0f0;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.text_intro_dicas {
  text-align: center;
  width: 90%;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.6;
}

.title_cards{
  display: none;
  text-align: center;
  color: #232B33;
}

.cards_dicas_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem;
  margin-top: 0;
}

.card_dica_img {
  width: 30%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background-color: #fff;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  margin: 1rem;
}

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

.card_dica_img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card_content {
  padding: 1rem;
  text-align: center;
}

.card_content h3 {
  margin: 0;
  font-size: 1.2rem;
}

.card_content p {
  font-size: 0.9rem;
  color: #555;
}

.botao_card {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 1rem auto 0 auto;
  
}

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


/*Responsividade telas maiores*/
@media (min-width: 1600px) {
  #title_tips {
    font-size: 4rem;
    margin-top: 60px;
    color: #5A5886;
  }
  .cards_dicas_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem;
  margin-top: 0;
}
  .card_dica_img {
    width: 30%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background-color: #fff;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: inline-block;
    margin: 1rem;
  }
}


/*Responsividade Tablet*/
@media (max-width: 1000px) {
  .card_dica_img {
    height: 400px;
    width: 86%;
  }
}

/* Responsivo celular */
@media (max-width: 460px) and (min-width:300px) {
  .card_dica_img {
    width: 100%;
    height: 350px;
    margin: 1rem 0;
  }
  
  #title_tips{
  margin-top: 60px;
  color: #5A5886;
  display: block;
  font-size: 4rem;
  }

  .banner {
    display:none;
  }

  .title_cards{
  display: block;
  }
  .card_content h3 {
  display: none;
  }
  #menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background: white;
    position: fixed; /* Fixo na tela inteira */
    top: 20px; /* Altura em relação ao topo da tela */
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
  }
  
}
