/* --------------------------------------------- */
/*               FOOTER PRINCIPAL                */
/* --------------------------------------------- */

.main-footer {
  background-color: var(--black-color);
  color: var(--white-color);
  padding: 3rem 2rem 1rem;
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------- */
/*             CONTENEDOR INTERNO                */
/* --------------------------------------------- */

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

/* --------------------------------------------- */
/*                   LOGO                        */
/* --------------------------------------------- */

.footer-logo img {
  height: 50px;
  width: auto;
  aspect-ratio: auto;
}

/* --------------------------------------------- */
/*               MENÚ DE NAVEGACIÓN              */
/* --------------------------------------------- */

.footer-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.footer-nav .nav-list li a {
  font-family: var(--font-family-main);
  font-weight: 500;
  font-size: 1rem;
  color: var(--white-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav .nav-list li a:hover {
  color: var(--primary-color);
}

/* --------------------------------------------- */
/*           REDES SOCIALES (ICONOS SVG)         */
/* --------------------------------------------- */

.footer-social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-social a {
  transition: transform 0.2s ease;
}

.footer-social a:hover {
  transform: scale(1.2);
  color: var(--primary-color);
}


/* --------------------------------------------- */
/*         DERECHOS RESERVADOS / COPYRIGHT       */
/* --------------------------------------------- */

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--white-color);
  line-height: 1.4;
}

/* --------------------------------------------- */
/*            RESPONSIVE / MOBILE                */
/* --------------------------------------------- */

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-logo {
    margin-bottom: 1rem;
  }

  .footer-nav .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  .footer-bottom {
    padding: 0 1rem;
    font-size: 0.75rem;
  }
}
