/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 32px;
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-size: 14px;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-size: 14px;
}

.footer a:hover {
  color: var(--accent);
}

.socials {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

.socials a {
  display: block;
  transition: transform var(--transition);
}

.socials a:hover {
  transform: translateY(-4px);
}

.socials img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 8px;
  transition: all var(--transition);
}

.socials a:hover img {
  box-shadow: var(--shadow-lg);
}

.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}