/* === Footer Moderno tipo CyberAgent === */
.footer-modern {
  background-color: #000;
  color: #ccc;
  font-family: "Montserrat", sans-serif;
  padding-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
  padding: 0 40px;
  font-size: large;
}

.footer-logo {
  max-height: 90px;
  margin-bottom: 10px;
  filter: none !important; /* Muestra tu logo amarillo real */
}

.footer-slogan {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 5px 0;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #FFD700; /* Amarillo dorado UESG */
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 10px;
}

.social-icons a {
  color: #ccc;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #FFD700;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  text-align: center;
  padding: 15px 0;
  color: #777;
  font-size: 0.85rem;
}

.footer-bottom .brand {
  color: #FFD700;
  font-weight: 700;
}


