body {
  font-family: 'Poppins', sans-serif;
}

/* Rodapé */
footer {
  background-color: var(--preto);
  color: var(--branco);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
}

/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-logo span {
  font-weight: 600;
}

/* Redes sociais */
.footer-links-rede {
  display: flex;
  gap: 16px;
  justify-content: center;
  font-size: clamp(14px, 2vw, 20px);
}

.footer-links-rede a {
  text-decoration: none;
  color: var(--branco);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links-rede a:hover {
  transform: scale(1.1);
}

/* Ícones em círculos */
.footer-links-rede i {
  font-size: 1.2em;
  border-radius: 50%;
  padding: 10px;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-links-rede a:hover i {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.footer-links-rede .facebook i {
  background-color: #1877f2;
}

.footer-links-rede .instagram i {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.footer-links-rede .whatsapp i {
  background-color: #25d366;
}

/* Links de navegação */
.footer-links {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--branco);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

/* Responsivo */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo,
  .footer-links-rede,
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-logo {
    flex-direction: column;
  }
}
