/* FOOTER */
.footer {
  background: radial-gradient(circle at top, #1c2533, #0e1218);
  color: #d1d5db;
  font-size: 15px;
}

/* CONTENEDOR */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
}

/* MARCA */
.footer-brand h3 {
  color: #ffc107;
  font-size: 22px;
  margin-bottom: 16px;
}

.footer-brand h3 span {
  color: #ffffff;
}

.footer-brand p {
  line-height: 1.6;
  color: #c7c7c7;
}

/* REDES */
.social-icons {
  margin-top: 24px;
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #ffc107;
  color: #121212;
}

/* ENLACES */
.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #c7c7c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffc107;
}

/* CONTACTO */
.footer-contact p {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* BARRA INFERIOR */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  font-size: 14px;
  color: #9ca3af;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
