
/* Rodapé */
footer {
  background: #1f2833;
  padding: 30px 15px;
  text-align: center;
  color: #ccc;
  border-top: 2px solid #45a29e;
  font-family: Arial, sans-serif;
  margin-top: 40px;
}

footer p {
  margin: 8px 0;
  font-size: 0.9rem;
}

footer a {
  color: #66fcf1;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #45a29e;
  text-decoration: underline;
}

footer .copyright {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #777;
  font-weight: bold;
}

/* Responsivo */
@media (max-width: 600px) {
  footer {
    padding: 20px 10px;
    font-size: 0.85rem;
  }
  
  footer a {
    display: inline-block;
    margin: 5px;
  }
}
