/* Estilização do footer */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  color: white;
  padding: 15px;
  text-align: center;
}

#icons {
  margin-bottom: 10px;
}

/* TAMANHO E ESTILO DOS ÍCONES */
#icons a {
  color: white;
  font-size: 27px;
  margin: 0 10px;
  transition: transform 0.2s;
}

#icons a:hover {
  cursor: pointer;
  transform: scale(1.1);
  text-decoration: none;
  color: rgb(119, 119, 119);
  transition: transform 0.2s;
}

footer p {
  font-size: 15px;
}

footer img {
  height: 60px;
  vertical-align: middle;
}

/* ---------------------------- Media Queries ---------------------------- */

/* Dispositivos móveis (até 767px) */
@media screen and (max-width: 767px) {
  footer {
    flex-direction: row;
    text-align: center;
  }

  footer img {
    display: none;
  }

  #icons {
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
    justify-content: center;
  }

  #icons a {
    font-size: 24px;
    gap: 30px;
    margin: 10px 0;
  }

  footer p {
    font-size: 14px;
    align-items: center;
    justify-content: center;
  }
}

/* Tablets (768px a 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  footer {
    flex-direction: row;
    justify-content: space-between;
  }

  #icons {
    margin-bottom: 10px;
  }

  #icons a {
    font-size: 26px;
    margin: 0 10px;
  }

  footer p {
    font-size: 15px;
  }
}

/* Telas grandes (a partir de 1200px) */
@media screen and (min-width: 1200px) {
  footer {
    padding: 20px;
  }

  #icons a {
    font-size: 30px;
  }

  footer p {
    font-size: 16px;
  }
}
