/* Estilos específicos para o footer */
/* .footer, .footer-content, .footer-info, .footer-bottom, etc. */

.footer {
  background: #f8f8fc;
  padding: 2.5rem 0 1.2rem 0;
  color: #444;
}
.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.footer .footer-info h3 {
  color: var(--primary-color, #9B6B9E);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.footer .footer-info p,
.footer .footer-info a {
  font-size: 0.98rem;
  color: #444;
  text-decoration: none;
}
.footer .footer-info a:hover {
  color: var(--accent-color, #1dbf73);
}
.footer .footer-bottom {
  text-align: center;
  font-size: 0.95rem;
  color: #888;
  margin-top: 1.2rem;
}
.footer .whatsapp-link,
.footer .instagram-link {
  color: var(--accent-color, #1dbf73);
  font-weight: 600;
  text-decoration: none;
}
.footer .whatsapp-link:hover,
.footer .instagram-link:hover {
  color: var(--primary-color, #9B6B9E);
}
