/* 
 * ESTILO DO FOOTER
 * Design consistente com o restante do site
 */

.footer {
  background: linear-gradient(125deg, #0A231A 0%, #14C860 70%, #0c3b28 100%);
  color: #FFFFFF;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 35%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  flex: 0 0 auto;
}

.footer-logo-img {
  max-width: 150px;
  height: auto;
}

.footer-social {
  flex: 0 0 auto;
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #FFFFFF;
  transform: translateY(-3px);
}

.social-link img {
  width: 20px;
  height: 20px;
  filter: invert(100%);
}

.social-link:hover img {
  filter: invert(56%) sepia(95%) saturate(431%) hue-rotate(101deg) brightness(95%) contrast(89%);
}

.footer-legal {
  flex: 1;
  text-align: right;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-legal p {
  margin-bottom: 0.5rem;
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  transition: all 0.3s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #FFFFFF;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.footer-links a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 0;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-legal {
    text-align: center;
  }
}
