/* =========== Footer =========== */

footer {
  background-color: rgba(64, 47, 46, 0.95); /* Fondo de color */
  height: 70px;
  width: 100%;
  border-radius: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  box-sizing: border-box;
  z-index: 999; /* Asegura que el pie de página se muestre por encima de otros elementos */
}

footer .social {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .social p {
  margin-right: 24px;
}

footer .social a {
  display: inline-block;
  padding: 8px 16px;
  color: #fff;
  border-radius: 5px;
  margin: 0 5px;
}

footer .social a.facebook {
  background-color: rgba(59, 89, 152, 0.1); /* Facebook */
}

footer .social a.twitter {
  background-color: rgba(85, 172, 238, 0.1); /* Twitter */
}

footer .social a.instagram {
  background-color: rgba(18, 86, 136, 0.1); /* Instagram */
}

footer .social a.discord {
  background-color: rgba(114, 137, 218, 0.1); /* Discord */
}

footer .social a.teamspeak {
  background-color: rgba(29, 135, 227, 0.1); /* TeamSpeak */
}

footer .social a.youtube {
  background-color: rgba(255, 0, 0, 0.1); /* YouTube */
}

/* =========== Social =========== */

.social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.social p {
  margin-right: auto;
  margin-left: 0;
  flex-basis: 100%;
}

.social a {
  display: inline-block;
  padding: 12px 24px;
  color: #fff;
  border-radius: 8px;
  margin: 10px 5px;
  font-size: 18px;
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: #f8b700;
  padding: 0 10px;
  display: inline-block;
}

.social-icon:hover {
  fill: #fff;
}

svg {
  width: 24px;
  height: 24px;
}

.social a svg {
  fill: #f8b700;
  padding: 0 10px;
  display: inline-block;
  width: 30px;
  height: 30px;
}

.social a:hover svg {
  fill: #ffffff;
}

.social img {
  width: 30px;
  height: 30px;
  margin: 0 3px;
  transition: filter 0.2s ease-in-out;
}

.social img:hover {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) brightness(600%) saturate(100%) hue-rotate(270deg);
}

.center-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  flex-grow: 1;
}
/* Estilos adicionales para dispositivos móviles */
@media screen and (max-width: 768px) {
  footer {
    height: 90px; /* Ajusta la altura del pie de página */
    padding: 0 16px; /* Ajusta el padding horizontal */
  }

  footer .social a {
    padding: 28px 56; /* Ajusta el padding de los botones sociales */
    font-size: 25px; /* Ajusta el tamaño de fuente de los botones sociales */
  }
}


/* Estilos adicionales para dispositivos móviles */
@media screen and (max-width: 580px) {
  footer {
    height: 90px; /* Ajusta la altura del pie de página */
    padding: 0 16px; /* Ajusta el padding horizontal */
  }

  footer .social a {
    padding: 28px 56; /* Ajusta el padding de los botones sociales */
    font-size: 25px; /* Ajusta el tamaño de fuente de los botones sociales */
  }
}
