/* assets/css/footer.css - Footer Mejorado */

.footer {
  background: var(--gradient-primary);
  color: var(--white);
  margin-top: 4rem;
  padding: 3rem 0 1.5rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-cyan),
    transparent
  );
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h5,
.footer-section h6 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section h5 {
  font-size: 1.25rem;
}

.footer-section h6 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-brand {
  max-width: 300px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--accent-cyan);
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  flex: 1;
}

.copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  background: var(--accent-cyan);
  color: var(--primary-black);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 255, 221, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-section h5,
  .footer-section h6 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .footer-links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
  }

  .footer-links-list li {
    margin-bottom: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-top: 1.5rem;
  }

  .footer-social {
    flex-direction: column;
    gap: 0.75rem;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 0 1rem;
  }

  .footer-content {
    gap: 1.25rem;
  }

  .footer-links-list {
    gap: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .footer-links-list a {
    padding: 0.25rem 0.5rem;
  }

  .footer-bottom {
    gap: 0.75rem;
    padding-top: 1.25rem;
  }

  .copyright p {
    font-size: 0.8rem;
  }

  .social-text {
    font-size: 0.85rem;
  }

  .social-link {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}
