/* Estilos dedicados para el footer CubaFGC */
.footer-content {
  width: 100%;
  background: #1a1622;
  color: #ffd600;
  font-size: 1em;
  margin: 0;
  padding: 0.3em 0 0.3em 0;
}
.footer-dev {
  text-align: center;
  font-size: 0.98rem;
  color: #bbb;
  padding: 1.2rem 0 0.5rem 0;
}
.footer-dev-link {
  color: #FFD600;
  font-weight: 600;
  text-decoration: none;
}
.footer-powered {
  text-align: center;
  margin: 0.7rem 0 0.2rem 0;
  font-size: 1.02rem;
  color: #FFD600;
  font-weight: 600;
}
.social-links {
  margin-top: 0.4em;
  display: flex;
  justify-content: center;
  gap: 1.0em;
  width: 100%;
}
.social-links a svg {
  vertical-align: middle;
  transition: transform 0.2s;
  width: 28px;
  height: 28px;
}
.social-links a:hover svg {
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px #ffd60088);
}
@media (max-width: 700px) {
  .footer-content {
    padding: 0.7em 0 0.5em 0;
  }
  .footer-powered {
    font-size: 1rem;
    margin: 0.7rem 0 0.2rem 0;
  }
  .footer-dev {
    font-size: 0.95rem;
    padding: 1rem 0 0.4rem 0;
  }
  .social-links {
    gap: 0.7em;
    flex-wrap: wrap;
    justify-content: center;
  }
  .social-links a svg {
    width: 26px;
    height: 26px;
  }
}
