/* Footer Styles - Balan7 Inteligência Contábil */

.footer {
  background-color: var(--primary-dark);
  color: var(--gray-300);
  padding-top: var(--spacing-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-logo img {
  height: 60px;
  margin-bottom: var(--spacing-md);
}

.footer-logo p {
  color: var(--gray-400);
}

.footer h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.footer h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-color);
}

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

.footer-info ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-sm);
}

.footer-info ul li i {
  color: var(--secondary-color);
  margin-right: var(--spacing-sm);
  margin-top: 4px;
}

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

.footer-links ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-links ul li a {
  color: var(--gray-300);
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: var(--spacing-sm);
}

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

.social-icon:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding: var(--spacing-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .footer-logo,
  .footer-info,
  .footer-links,
  .footer-social {
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto var(--spacing-md);
  }
  
  .footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-info ul li {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}