/* FOOTER */
.footer {
  background-color: #090E16;
  color: #fff;
  padding: 60px 30px 25px;
  font-family: 'Inter', sans-serif;
}

/* Contenedor principal */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
  flex-wrap: wrap;
}

/* Columnas */
.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  color: #f9b233;
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #f9b233;
  display: block;
  margin-top: 6px;
  border-radius: 2px;
}

/* Enlaces */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s, transform 0.2s;
}

.footer-col ul li a:hover {
  color: #f9b233;
  transform: translateX(4px);
}

/* Contacto */
.footer-col p {
  font-size: 15px;
  margin: 8px 0;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col p i {
  color: #f9b233;
  font-size: 16px;
}

/* Logo */
.footer-logo {
  max-width: 170px;
  filter: brightness(1.1);
}

/* Redes sociales */
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-socials a {
  color: #fff;
  font-size: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: #f9b233;
  color: #090E16;
  transform: translateY(-3px);
}

/* Línea divisoria */
.footer hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 35px 0 20px;
}

/* Texto inferior */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  letter-spacing: 0.5px;
}

.footer-bottom span {
  color: #f9b233;
  font-weight: 600;
}

/* Responsive */
/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;   /* ✅ en columna */
    align-items: center;      /* ✅ centrado horizontal */
    text-align: center;       /* ✅ texto centrado */
    gap: 40px;                
  }

  .footer-col {
    flex: unset;
    min-width: unset;
    width: 100%;
    max-width: 350px;
  }

  .footer-col h4::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col p {
    justify-content: center;  /* ✅ centra texto + ícono */
    text-align: center;       /* ✅ asegura alineación centrada */
  }

  .footer-socials {
    justify-content: center;  /* ✅ íconos al centro */
  }
}


