/* ================= FOOTER ================= */

.footer-section {
  padding: 40px 8%;
  background: #0b1a33;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  height: 45px;
  width: auto;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-socials a {
  color: #94a3b8;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #5b44c1;
}

/* Redes SVG icons (simulating react-icons/lucide) */
.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  flex: 2;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-column h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #5b44c1;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 30px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

@media (min-width: 768px) {
  .footer-legal-links {
    flex-direction: row;
    gap: 20px;
  }
}

.footer-legal-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-legal-links a:hover {
  color: #5b44c1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .logo {
    width: 150px;
  }

  .service-image {
    height: 180px;
  }
}
