/* ===========================
🌍 VARIABLES GLOBALES
=========================== */
:root {
  --color_fondo_general: #2c5edd;
  --color_contraste_1: #b9a013;
  --color_primario_solido_o_gradiente_1: #7597de;
  --color_secundario_solido_o_gradiente_2: #9ee8ff;
  --color_terciario_solido_o_gradiente_3: #0072ff;
  --color_cuaternario_solido_o_gradiente_4: #ffffff;
  --color_texto_1: #9ee8ff;
}

/* ===========================
🧱 Footer1
=========================== */
.footer-section {
  background-color: var(--color_fondo_general);
}

.footer {
  color: var(--color_texto_1);
  background-color: var(--color_fondo_general);
}

.footer h5 {
  color: var(--color_cuaternario_solido_o_gradiente_4);
}

.footer p,
.footer li {
  color: var(--color_texto_1);
  font-size: 0.95rem;
}

/* ===========================
📍 CONTACTO
=========================== */
.footer-contact i {
  color: var(--color_primario_solido_o_gradiente_1);
}

/* ===========================
🔗 LINKS
=========================== */
.footer a {
  color: var(--color_cuaternario_solido_o_gradiente_4);
  text-decoration: none;
  transition: color 0.3s ease;
}

/* ===========================
➖ DIVISOR
=========================== */
.footer-divider {
  border: none;
  height: 1px;
  background-color: var(--color_contraste_1);
  margin: 1.5rem 0;
}

/* ===========================
🌐 ICONOS REDES SOCIALES
=========================== */
.bi-facebook {
  transition: color 0.3s ease;
}

.bi-facebook:hover {
  color: var(--color_terciario_solido_o_gradiente_3);
}

.bi-instagram {
  transition: color 0.3s ease;
}

.bi-instagram:hover {
  background: linear-gradient(45deg,
      var(--color_contraste_1),
      var(--color_primario_solido_o_gradiente_1),
      var(--color_secundario_solido_o_gradiente_2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bi-tiktok {
  transition: color 0.3s ease;
}

.bi-tiktok:hover {
  color: var(--color_primario_solido_o_gradiente_1);
}

.bi-youtube {
  transition: color 0.3s ease;
}

.bi-youtube:hover {
  color: var(--color_contraste_1);
}




/* ===========================
🧱 Footer2
=========================== */
.footer2-section {
  background: linear-gradient(180deg,
      var(--color_fondo_general),
      var(--color_contraste_1));
}

.footer2 {
  color: var(--color_texto_1);
  padding: 3rem 0 1.5rem;
  background-color: var(--color_fondo_general);
}

/* ===========================
🔷 ESTRUCTURA
=========================== */
.footer2-main {
  align-items: flex-start;
}

/* ===========================
🏷 BRAND
=========================== */
.footer2-brand h4 {
  color: var(--color_cuaternario_solido_o_gradiente_4);
  margin-bottom: 1rem;
}

.footer2-brand p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ===========================
📍 CONTACTO EN TARJETAS
=========================== */
.footer2-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer2-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.footer2-card i {
  color: var(--color_primario_solido_o_gradiente_1);
  font-size: 1.1rem;
}

/* ===========================
🌐 REDES SOCIALES
=========================== */
.footer2-social h6 {
  color: var(--color_cuaternario_solido_o_gradiente_4);
  margin-bottom: 1rem;
}

.footer2-social-icons {
  display: flex;
  gap: 1rem;
}

.footer2-social-icons a {
  font-size: 1.4rem;
  color: var(--color_cuaternario_solido_o_gradiente_4);
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer2-social-icons a:hover {
  transform: translateY(-4px);
}

/* ===========================
➖ BARRA INFERIOR
=========================== */
.footer2-bottom {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color_contraste_1);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ===========================
🧱 Footer3 Minimal Horizontal
=========================== */
.footer3-section {
  background-color: var(--color_fondo_general);
  color: var(--color_texto_1);
  font-size: 0.95rem;
}

/* Footer container horizontal */
.footer3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  /* permite que se envuelvan en pantallas pequeñas */
  background-color: var(--color_fondo_general);
  padding: 2rem 0;
  gap: 2rem;
  /* separación entre columnas */
}

/* Branding */
.footer3-brand h5 {
  color: var(--color_cuaternario_solido_o_gradiente_4);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.footer3-brand p {
  opacity: 0.85;
  margin: 0;
  font-size: 0.9rem;
}

/* Contacto rápido */
.footer3-contact {
  display: flex;
  flex-direction: column;
  /* vertical en desktop para mejor alineación */
  gap: 0.75rem;
}

.footer3-contact div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color_texto_1);
}

.footer3-contact i {
  color: var(--color_primario_solido_o_gradiente_1);
}

/* Redes sociales */
.footer3-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer3-social a {
  color: var(--color_cuaternario_solido_o_gradiente_4);
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 1.4rem;
}

.footer3-social a:hover {
  transform: translateY(-3px);
}

/* Barra inferior */
.footer3-bottom {
  background-color: var(--color_contraste_1);
  color: var(--color_cuaternario_solido_o_gradiente_4);
  font-size: 0.85rem;
  text-align: center;
  padding: 0.75rem 0;
  margin-top: 1rem;
}

/* Íconos (heredados de Footer1) */
.bi-facebook {
  transition: color 0.3s ease;
}

.bi-facebook:hover {
  color: var(--color_terciario_solido_o_gradiente_3);
}

.bi-instagram {
  transition: color 0.3s ease;
}

.bi-instagram:hover {
  background: linear-gradient(45deg,
      var(--color_contraste_1),
      var(--color_primario_solido_o_gradiente_1),
      var(--color_secundario_solido_o_gradiente_2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bi-tiktok {
  transition: color 0.3s ease;
}

.bi-tiktok:hover {
  color: var(--color_primario_solido_o_gradiente_1);
}

.bi-youtube {
  transition: color 0.3s ease;
}

.bi-youtube:hover {
  color: var(--color_contraste_1);
}

/* ===========================
📱 RESPONSIVE
=========================== */
@media (max-width: 991px) {
  .footer3 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer3-brand,
  .footer3-contact,
  .footer3-social {
    width: 100%;
  }

  .footer3-contact {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer3-social {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .footer3-brand h5 {
    font-size: 1.1rem;
  }

  .footer3-brand p {
    font-size: 0.85rem;
  }

  .footer3-contact div span {
    font-size: 0.85rem;
  }

  .footer3-social a {
    font-size: 1.2rem;
  }
}


/* ===========================
🧱 Footer4 Minimal Modern
=========================== */


.footer4-section {
  background-color: var(--color_fondo_general);
  color: var(--color_texto_1);
  font-size: 0.95rem;
}

.footer4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  gap: 1rem;
  background-color: var(--color_fondo_general);
}

/* Branding */
.footer4-brand h5 {
  color: var(--color_cuaternario_solido_o_gradiente_4);
  margin: 0;
  font-weight: 600;
}

/* Derechos */
.footer4-rights p {
  color: var(--color_texto_1);
  margin: 0;
  opacity: 0.8;
  font-size: 0.85rem;
}

/* Redes sociales */
.footer4-social a {
  color: var(--color_cuaternario_solido_o_gradiente_4);
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer4-social a:hover {
  transform: translateY(-3px);
}

/* Íconos */
.bi-facebook {
  transition: color 0.3s ease;
}

.bi-facebook:hover {
  color: var(--color_terciario_solido_o_gradiente_3);
}

.bi-instagram {
  transition: color 0.3s ease;
}

.bi-instagram:hover {
  background: linear-gradient(45deg,
      var(--color_contraste_1),
      var(--color_primario_solido_o_gradiente_1),
      var(--color_secundario_solido_o_gradiente_2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bi-tiktok {
  transition: color 0.3s ease;
}

.bi-tiktok:hover {
  color: var(--color_primario_solido_o_gradiente_1);
}

.bi-youtube {
  transition: color 0.3s ease;
}

.bi-youtube:hover {
  color: var(--color_contraste_1);
}

/* ===========================
📱 RESPONSIVE
=========================== */
@media (max-width: 991px) {
  .footer4 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer4-social {
    margin-top: 0.75rem;
    gap: 1rem;
  }

  .footer4-rights {
    margin-top: 0.5rem;
  }
}

@media (max-width: 576px) {
  .footer4-brand h5 {
    font-size: 1rem;
  }

  .footer4-rights p {
    font-size: 0.8rem;
  }

  .footer4-social a {
    font-size: 1.2rem;
  }
}