   /* =========================
       FOOTER
    ========================= */

    .site-footer {
      width: 100%;
      min-height: 511px;
      background: #620903;
      color: #ffffff;
      display: flex;
      justify-content: center;
    }

    .site-footer__inner {
      width: 100%;
      max-width: 1498px;
      min-height: 511px;
      margin: 0 auto;
      padding: 75px 42px 39px 42px;
      display: flex;
      flex-direction: column;
    }

    .site-footer__top {
      width: 100%;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 42px;
    }


    /* =========================
       MARCA
    ========================= */

    .footer-brand {
      width: 100%;
      max-width: 318px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-brand__logo {
      width: 109px;
      height: 109px;
      object-fit: cover;
      object-position: center;
    }

    .footer-brand p {
      width: 100%;
      max-width: 318px;
      margin: 31px 0 0;
      font-size: 18px;
      line-height: 26px;
      color: #f0ebe8;
    }


    /* =========================
       COLUMNAS
    ========================= */

    .footer-column {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-column--nav {
      width: 100%;
      max-width: 190px;
    }

    .footer-column--contact {
      width: 100%;
      max-width: 367px;
    }

    .footer-column--social {
      width: fit-content;
    }

    .footer-column h2 {
      width: 100%;
      margin: 0 0 16px;
      font-size: 17px;
      line-height: 35px;
      text-transform: none;
      color: #ffffff;
    }

    .footer-column--contact h2,
    .footer-column--social h2 {
      text-transform: uppercase;
    }

    .footer-column ul {
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      list-style: none;
    }

    .footer-column li,
    .footer-column a,
    .footer-column address {
      font-size: 17px;
      font-style: normal;
      font-weight: 400;
      line-height: 35px;
      text-decoration: none;
      color: #ffffff;
    }

    .footer-column address {
      width: 100%;
      max-width: 367px;
      line-height: 27px;
    }


    /* =========================
       REDES SOCIALES
    ========================= */

    .footer-social {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-social__link {
      width: 40px;
      height: 40px;
      overflow: hidden;
      transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
    }

    .footer-social__link img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.35s ease;
    }

    .footer-social__link:hover,
    .footer-social__link:focus-visible {
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
      transform: translateY(-2px);
    }

    .footer-social__link:hover img,
    .footer-social__link:focus-visible img {
      transform: scale(1.05);
    }


    /* =========================
       PARTE INFERIOR
    ========================= */

    .site-footer__bottom {
      width: 100vw;
      margin: auto 0 0 50%;
      padding: 32px 0 0;
      display: flex;
      transform: translateX(-50%);
      border-top: 1px solid rgba(255, 255, 255, 0.3);
    }

    .site-footer__bottom p {
      width: 100%;
      max-width: 1498px;
      margin: 0 42px;
      font-size: 18px;
      line-height: 26px;
      color: rgba(240, 235, 232, 0.6);
    }


    /* =========================
       TABLETA
    ========================= */

    @media (max-width: 1000px) {

      .site-footer__inner {
        padding: 64px 54px 38px;
      }

      .site-footer__top {
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;
      }

      .footer-brand,
      .footer-column--contact {
        max-width: 100%;
      }

      .footer-brand p {
        max-width: 100%;
        margin-top: 10px;
      }

      .footer-column--nav,
      .footer-column--social {
        max-width: 520px;
      }



      .footer-column--social {
        padding-bottom: 30px;
      }

      .footer-column h2 {
        margin-bottom: 0;
      }

      .footer-column address {
        max-width: 100%;
      }

    }


    /* =========================
       MOBILE
    ========================= */

    @media (max-width: 700px) {

      .site-footer {
        min-height: auto;
      }

      .site-footer__inner {
        min-height: auto;
        padding: 46px 28px 34px;
      }

      .site-footer__top {
        gap: 36px;
      }

      .footer-brand,
      .footer-column--nav,
      .footer-column--contact,
      .footer-column--social {
        width: 100%;
      }

      .footer-brand p,
      .footer-column address {
        width: 100%;
        max-width: 100%;
      }

      .footer-brand p {
        font-size: 16px;
        line-height: 24px;
      }

      .footer-column h2 {
        font-size: 16px;
        line-height: 24px;
      }

      .footer-column li,
      .footer-column a,
      .footer-column address {
        font-size: 16px;
        line-height: 28px;
      }

      .footer-column address {
        line-height: 24px;
      }

      .footer-social {
        gap: 10px;
      }

      .site-footer__bottom {
        margin-top: 52px;
        padding-top: 28px;
      }

      .site-footer__bottom p {
        font-size: 16px;
        line-height: 24px;
        padding-left: 28px;
        margin: 0;
      }

    }
