  /*///////FOOTER///////*/
  .footer {
      background-color: #333;
      color: #fff;
      padding: 40px 0;
  }

  .container {
      display: flex;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      flex-direction: column;
      align-items: center;
  }

  .footer-logo img {
      width: 100px;
      height: auto;
  }

  .footer-sections ul,
  .footer-social ul {
      list-style: none;
      padding: 0;
  }

  .footer-sections ul li,
  .footer-social ul li {
      margin-bottom: 12px;
  }

  .footer-sections ul li a,
  .footer-social ul li a {
      color: #fff;
      text-decoration: none;
      display: block;
  }

  .footer-sections a,
  .footer-contact a {
      text-decoration: none;
      color: var(--white-color);
      margin: 0 15px;
      font-size: 24px;
      position: relative;
      display: flex;
      cursor: pointer;
      align-items: center;
  }

  .footer-contact a > img{
    width: 3vh;
    margin-right: 10px;
  }

  .footer-sections a::after,
  .footer-contact a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      bottom: -2px;
      /* Ajusta la posición del subrayado */
      left: 0;
      background-color: var(--primary-color);
      /* Color del subrayado */
      transition: width 0.3s;
      /* Transición del ancho del subrayado */
  }

  .footer-sections a:hover::after,
  .footer-contact a:hover::after {
      width: 100%;
      /* Ancho completo al pasar el cursor sobre el enlace */
  }

  .footer-sections a:visited::after,
  .footer-sections a:active::after {
      width: 100%;
      /* Ancho completo para los enlaces visitados y activos */
  }

  .footer-social ul li {
      display: inline-block;
      margin-right: 10px;
  }

  .footer-social ul li:last-child {
      margin-right: 0;
  }

  .footer-social ul li a {
      display: flex;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background-color: #fff;
      align-items: center;
      justify-content: center;
      transition: 0.2s ease-in-out;
  }

  .footer-social ul li a img {
      width: 25px;
      height: auto;
      transition: 0.2s ease-in-out;
  }

  .footer-social a:hover {
      background-color: var(--primary-color);
  }

  .footer-social a:hover img {
      filter: invert(100%);
  }

  .divider {
      width: 100%;
      border-top: 1px solid #555;
      /* Línea divisoria */
      margin: 20px 0;
      /* Espaciado entre la línea divisoria y el texto de los legales */
  }

  .legal {
      text-align: center;
      font-size: 14px;
  }

.credits{
    text-decoration: none;
    color: var(--primary-color);
}

  /*///////END FOOTER///////*/

  @media (max-width: 900px) {
      .footer-social>.row {
          flex-direction: row;
      }

      ul .row{
        flex-direction: row;
      }

      .footer-sections a,
      .footer-contact a {
          font-size: 16px;
      }
  }