/* ========================================
   FOOTER - LP IA Varejo 2025
   ======================================== */

.footer {
  background: url('../images/gradiante.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2rem;
  text-align: start;
}

.footer__logo {
  height: auto;
  width: 500px;
}

.footer__tagline {
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  color: white;
  margin-bottom: 1rem;
}

.footer__tagline-highlight {
  color: white;
  font-weight: var(--font-weight-bold);
}


.footer__copyright {
  font-size: 0.8125rem;
  color: white;
  margin: 0;
}

.footer__copyright-year {
  font-weight: var(--font-weight-semibold);
  color: white;
}

.footer__links {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.footer__link {
  font-size: 0.875rem;
  color: white;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: white;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.footer__social a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.footer__social-icon {
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
  display: block;
}

.footer__logo_netapp {
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: var(--spacing-xl) 0;
  }

  .footer__logo {
    height: 60px;
    margin-top: 20px;
  }

  .footer__tagline {
    font-size: 0.8125rem;
  }

  .footer__copyright {
    font-size: 0.75rem;
  }
}