* {
  font-family: "Ligconsolata", sans-serif;
  font-weight: bold;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*-----------------FOOTER----------------*/

footer {
  background-color: #fdfeff;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  height: 60px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  gap: 15px;
}

footer a {
  color: #4fc3f7;
  text-decoration: none;
  margin-left: 15px;
}

footer a:hover {
  text-decoration: underline;
}

/*--------------RESPONSIVIDADE MOBILE--------------*/

/* Tablets */
@media screen and (max-width: 768px) {
  footer {
    font-size: 13px;
    padding: 25px 15px;
    height: auto;
    min-height: 60px;
  }

  footer a {
    margin-left: 10px;
  }
}

/* Celulares */
@media screen and (max-width: 480px) {
  footer {
    flex-direction: column;
    text-align: center;
    font-size: 12px;
    padding: 20px 15px;
    height: auto;
    gap: 10px;
  }

  footer p {
    margin: 0;
  }

  footer a {
    margin-left: 0;
    margin-top: 5px;
  }
}

/* Celulares muito pequenos */
@media screen and (max-width: 360px) {
  footer {
    font-size: 11px;
    padding: 18px 12px;
  }
}