footer {
  background: var(--cor-secundaria);
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.footer-logo{
  display: flex;
  flex-direction: column;
  align-items: center; /* centraliza horizontal */
  justify-content: center; /* centraliza vertical (se precisar) */
  text-align: center;}

.footer-logo img {
  max-width: 200px;
  margin-bottom: 10px;
  background-color: white;
  padding: 1rem 1.5rem;
  border-radius: 35px;
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
}

.footer-links h4,
.footer-contato h4,
.footer-social h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #00aaff;
}

.footer-contato p {
  margin: 6px 0;
  font-size: 14px;
  color: #ccc;
}

.footer-social{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-social-social{
  display: flex;
  text-align: center;
}

.footer-social a {
  display: inline-block;
}

.footer-social a img {
  width: 28px;
  margin-right: 10px;
  transition: transform 0.3s;
}

.footer-social a img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}
