/* Footer Moderno com Cores Originais */
.footer {
  background-color: #9E54A1; /* Roxo do padrão original */
  color: white;
  padding: 40px 20px;
  font-size: 14px;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-section {
  flex: 1;
  text-align: center;
}

.footer-group-text {
  font-size: 16px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-logo {
  max-width: 100px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.1);
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #FCED01; /* Amarelo para destaque */
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #FCED01; /* Amarelo para hover */
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #FCED01; /* Amarelo para hover */
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #e0e0e0; /* Cinza claro para suavizar */
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* Linha sutil */
  padding-top: 10px;
}

.footer-bottom strong {
  color: #FCED01; /* Amarelo para destaque */
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    margin-bottom: 20px;
  }
}
