/* cyber_footer.css */

.cyber-footer {
  background: rgba(0, 0, 0, 0.529);
  color: #cccccc6c;
  padding: 40px 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  text-align: center;
  position: relative;
  z-index: 5;
  box-shadow: 0 -90px 0px rgba(10, 10, 10, 0.6); /* (horizontal, vertical, blur-radius, spread-radius) */
 
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #00d4bb;
  transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #00e6e6;
}

.footer-links a:hover::after,
.footer-links a:focus::after {
  width: 100%;
}

.footer-info p {
  margin: 5px 0;
  color: #888;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: #aaa;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: #00d4bb;
  transform: translateY(-2px) scale(1.1);
}

.footer-legal {
  font-size: 0.75rem;
  color: #777;
  margin-top: 10px;
}

.footer-legal a {
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #00d4bb;
}

@media screen and (max-width: 1170px) {
  .cyber-footer {
    padding: 32px 20px;
    font-size: 0.8rem;
  }

  .footer-container {
    gap: 20px;
    padding: 0 10px;
  }

  .footer-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-info p {
    font-size: 0.8rem;
    text-align: center;
  }

  .footer-social a {
    font-size: 1.05rem;
  }

  .footer-legal {
    font-size: 0.72rem;
    text-align: center;
  }
}


/* Ajustes para smartphones */
@media (max-width: 600px) {
  .cyber-footer {
    padding: 30px 16px;
    font-size: 0.70rem;
    text-align: center;
  }

  .footer-container {
    gap: 16px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-info p {
    font-size: 0.8rem;
  }

  .footer-social a {
    font-size: 1rem;
  }

  .footer-legal {
    font-size: 0.7rem;
  }
}
