/* ================================
FOOTER MODERNO
================================ */
.footer {
  background:#020617;
  padding:60px 20px 30px;
  color:#9ca3af;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

/* Logo y descripción arriba */
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo {
  width: 250px;
  margin-bottom: 20px;
}

.footer-top p {
  max-width: 500px;
  line-height: 1.6;
  color: #9ca3af;
}

/* Menus centrados debajo */
.footer-menus {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 300px;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #00bfff;
}

/* Redes sociales */
.redes a {
  display: block;
  margin-bottom: 10px;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.redes a:hover {
  color: #00bfff;
}

/* Footer bottom / copyright */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  color: #6b7280;
}

/* Responsive */
@media (max-width:900px){
  .footer-menus {
    gap: 40px;
  }
}

@media (max-width:600px){
  .footer-menus {
    flex-direction: column;
    gap: 30px;
  }
}