main {
  display: flex;
  flex-direction: column;
  /* background-color: var(--color-2); */
  justify-content: center;
  width: 100vw;
  /* margin-top: 180px; */
}


main h1 {
  font-size: 2.5em;
  text-shadow: 0px 0px 0px #000000;
  text-align: center;
}

.backgroundImage {
  background-image: url("../_imagens/img_idosos.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100vw;
}

.intro {
  background-color: rgba(0, 0, 0, 0.5);

  display: flex;
  flex-direction: column;
  height: 75vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--cor-1);
}

.intro h2 {
  font-size: 2em;
  text-align: center;
  width: 60%;
}

.container h2 {
  text-align: center;
  margin-top: 5%;
  font-size: 1.5em;
  padding: 0 15%;
}

/* 
.cards-destaques {
  padding: 5% 10%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 550px;
  display: flex;
  gap: 10%;
}

.cards-destaques article {
  background-color: var(--cor-2);
  width: 40%;
  border-radius: 10px;
  padding: 1%;
  color: #fff;
  justify-content: center;
  align-items: center;
}

.cards-destaques article img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 100%;
  height: 90%;
}

.cards-destaques article h3 {
  text-align: center;
} */

#img_certificado_de_qualidade {
  width: 20%;
  height: auto;
}

.icon-toggle-menu i {
  display: none;
}




/* Dispositivos móveis: 320px and 480px wide */
@media only screen and (min-width: 0px) and (max-width: 0px) {
  header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* min-height: 80px; */
    transition: all 0.7s;
  }

  .menu {
    overflow: hidden;
    /* background-color: #333; */
    position: relative;
    display: none; /* O menu começa fechado */
    width: 100%;
    z-index: 99;
  }

  .menu ul {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .menu.open {
    display: block; /* Mostra o menu quando estiver aberto */
    z-index: 999999999;
    height: auto;
  }

  .icon-toggle-menu {
    display: block;
    cursor: pointer;
  }

  .icon-toggle-menu i {
    color: var(--cor-2);
    font-size: 35px;
  }

  header img {
    align-items: center;
    width: 80%;
    height: auto;
  }
}

