/*footer.css* | General */

/* ================================ FOOTER MOVIL ================================*/
/*Footer pegado a la parte inferior*/
.footer-movil {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--footer-height);
  background: var(--negro);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  z-index: 1000;
  border-top: 2px solid var(--rojo);
}
/* Estilo único para todos los botones */
.footer-movil .btn-footer {
  flex: 0;
  max-width: 190px;
  text-align: center;
  background: linear-gradient(135deg, var(--rojo-oscuro), var(--rojo));
  color: var(--blanco);
  padding: 9px 19px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.2rem;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid var(--rojo-oscuro);
  box-shadow: 0 -2px 6px rgba(0,0,0,0.6);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0.8), var(--rojo) rgba(0, 0, 0, 0.8)) 1;
}
.footer-movil .btn-footer:hover {
  background: linear-gradient(135deg, var(--rojo), var(--rojo-oscuro));
  transform: translateY(-3px);
  box-shadow: 0 0 10px rgba(255,0,0,0.6);
}


/* ================================ FOOTER PC ================================*/
/*Estilo principal*/
footer {
  position: relative;
  z-index: 1;
}
.footer-pc {
  background: var(--negro);
  color: var(--blanco-oscuro);
  padding: 40px 20px;
  border-top: 2px solid transparent;
}
/*Contenedor del footer para PC*/
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
/*Línea superior con diseño degradado*/
.footer-pc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    rgba(229, 9, 20, 0) 0%,
    rgba(229, 9, 20, 0.4) 20%,
    rgba(229, 9, 20, 1) 50%,
    rgba(229, 9, 20, 0.4) 80%,
    rgba(229, 9, 20, 0) 100%
  );
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.6);
  z-index: 2;
}
/*Contenedor de logo y lema*/
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
/*Logo*/
.footer-brand-logo {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.6));
}
/*Lema*/
.footer-brand-text {
  font-size: 2rem;
  color: var(--gris-claro);
  margin: 0;
}
/* Navegación rápida | General*/
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Navegación rápida | Opción*/
.footer-nav li {
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--gris-claro);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background-color: var(--rojo);
  transition: width 0.3s ease;
}
.footer-nav a:hover {
  color: var(--rojo);
  transform: translateX(4px);
}
.footer-nav a:hover::after {
  width: 100%;
}

/*Redes sociales | General*/
.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
/*Redes sociales | Botones*/
.footer-social a {
  color: var(--blanco-oscuro);
  font-size: 2rem;
  text-decoration: none; 
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blanco-oscuro);
  border-radius: 50%;
  transition: all 0.3s ease;
}
/*Redes sociales | Botones | Hover*/
.footer-social a:hover {
  color: var(--rojo);
  border-color: var(--rojo);
  transform: scale(1.1);
}
/* Footer | Copyright */
.footer-copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--gris-claro);
}

/* ================================ RESPONSIVE ================================*/
/*Pantallas menores a 1024px*/
@media (max-width: 1024px) {
  .footer-pc {
    display: none;
  }
}

/*Pantallas mayores a 1024px*/
@media (min-width: 1024px) {
  .footer-movil {
    display: none;
  }
}
