/* ============================================================
   OSLO IMPOR-TEC
   FOOTER CORPORATIVO
   Archivo independiente
============================================================ */


/* ============================================================
   BASE
============================================================ */

.site-footer,
.site-footer *,
.site-footer *::before,
.site-footer *::after {
    box-sizing: border-box;
}

.site-footer {
    width: 100%;
    margin: 0;
    padding: 0;

    position: relative;
    overflow: hidden;

    background: #111820;
    color: #ffffff;
}


/* ============================================================
   LÍNEA SUPERIOR
============================================================ */

.site-footer::before {
    content: "";

    display: block;

    width: 100%;
    height: 3px;

    background: var(--red);

    opacity: 0.95;
}


/* ============================================================
   FOOTER TOP
============================================================ */

.footer-top {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;

    padding: 65px 35px 55px;

    display: grid;

    grid-template-columns:
        1.35fr
        0.8fr
        1fr
        1fr;

    gap: 50px;

    align-items: start;
}


/* ============================================================
   MARCA
============================================================ */

.footer-brand {
    min-width: 0;
}

.footer-logo {
    display: block;

    width: auto;
    max-width: 175px;
    height: auto;

    margin: 0 0 18px;
}

.footer-logo-text {
    display: block;

    margin-bottom: 18px;

    color: #ffffff;

    font-size: 22px;
    font-weight: 700;

    letter-spacing: 0.05em;
}

.footer-slogan {
    max-width: 310px;

    margin: 0 0 24px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;
    line-height: 1.7;
}


/* ============================================================
   MARCAS
============================================================ */

.footer-marcas-icons {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 8px;
}

.footer-marcas-icons a {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 6px;

    background: rgba(255, 255, 255, 0.06);

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 8px;

    text-decoration: none;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.footer-marcas-icons a:hover {
    background: rgba(255, 255, 255, 0.12);

    border-color:
        rgba(255, 255, 255, 0.25);

    transform: translateY(-2px);
}

.footer-marcas-icons img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}

.footer-marcas-icons span {
    color: #ffffff;

    font-size: 8px;

    text-align: center;
}


/* ============================================================
   GRUPOS DE ENLACES
============================================================ */

.footer-links-group {
    min-width: 0;
}

.footer-links-group h4 {
    position: relative;

    margin: 0 0 21px;
    padding-bottom: 10px;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.3;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.footer-links-group h4::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 30px;
    height: 2px;

    background: var(--red);
}


/* ============================================================
   LISTAS
============================================================ */

.footer-links-group ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-links-group li {
    margin: 0 0 10px;
}

.footer-links-group li:last-child {
    margin-bottom: 0;
}


/* ============================================================
   LINKS
============================================================ */

.footer-links-group a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color:
        rgba(255, 255, 255, 0.64);

    font-size: 13px;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links-group a:hover {
    color: #ffffff;

    transform: translateX(3px);
}

.footer-links-group a .ti {
    width: 16px;

    color:
        rgba(255, 255, 255, 0.38);

    font-size: 13px;

    transition:
        color 0.25s ease;
}

.footer-links-group a:hover .ti {
    color: var(--red);
}


/* ============================================================
   VER TODAS LAS LÍNEAS
============================================================ */

.footer-links-group .footer-ver-todas {
    margin-top: 5px;

    color: #ffffff;

    font-weight: 600;
}

.footer-links-group .footer-ver-todas:hover {
    color: var(--red);
}


/* ============================================================
   FOOTER BOTTOM
============================================================ */

.footer-bottom {
    width: 100%;

    padding: 20px 30px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);

    background:
        rgba(0, 0, 0, 0.18);

    text-align: center;
}

.footer-bottom p {
    margin: 0 0 7px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 11px;

    line-height: 1.5;
}

.footer-cats {
    color:
        rgba(255, 255, 255, 0.35);

    font-size: 9px;

    line-height: 1.5;

    letter-spacing: 0.04em;
}


/* ============================================================
   WILLEX TR
   ACREDITACIÓN DE DESARROLLO
============================================================ */

.willex-credit-area {
    width: 100%;

    padding: 11px 15px 13px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #0c1218;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.055);
}


/* ============================================================
   TARJETA WILLEX
============================================================ */

.willex-credit {
    display: inline-flex;

    align-items: center;

    min-height: 48px;

    padding: 6px 12px;

    background:
        rgba(255, 255, 255, 0.025);

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    border-radius: 8px;

    text-decoration: none;

    opacity: 0.78;

    transition:
        opacity 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.willex-credit:hover {
    opacity: 1;

    background:
        rgba(255, 255, 255, 0.045);

    border-color:
        rgba(255, 255, 255, 0.25);

    transform:
        translateY(-1px);
}


/* ============================================================
   LOGO W
============================================================ */

.willex-credit-logo {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #12679a;

    border-radius: 6px;

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 17px;

    font-weight: 800;

    line-height: 1;
}


/* ============================================================
   CONTENIDO WILLEX
============================================================ */

.willex-credit-content {
    margin-left: 9px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    text-align: left;
}


/* ============================================================
   ETIQUETA
============================================================ */

.willex-credit-label {
    display: block;

    color:
        rgba(255, 255, 255, 0.45);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 5.5px;

    font-weight: 600;

    line-height: 1.2;

    letter-spacing: 0.13em;
}


/* ============================================================
   NOMBRE
============================================================ */

.willex-credit-name {
    display: block;

    margin-top: 1px;

    color:
        rgba(255, 255, 255, 0.86);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: 0.08em;

    transition:
        color 0.25s ease;
}


/* ============================================================
   SERVICIOS
============================================================ */

.willex-credit-services {
    display: block;

    margin-top: 2px;

    color:
        rgba(255, 255, 255, 0.30);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 5px;

    font-weight: 500;

    line-height: 1.2;

    letter-spacing: 0.09em;
}


/* ============================================================
   HOVER
============================================================ */

.willex-credit:hover .willex-credit-logo {
    background: var(--red);
}

.willex-credit:hover .willex-credit-name {
    color: #ffffff;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1000px) {

    .footer-top {
        grid-template-columns:
            1.2fr
            1fr
            1fr;

        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-slogan {
        max-width: 500px;
    }

}


/* ============================================================
   TABLET PEQUEÑA
============================================================ */

@media (max-width: 700px) {

    .footer-top {
        grid-template-columns:
            1fr
            1fr;

        padding:
            48px 25px 42px;

        gap: 35px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 520px) {

    .footer-top {
        grid-template-columns: 1fr;

        padding:
            42px 20px 38px;

        gap: 32px;
    }


    .footer-brand {
        grid-column: auto;

        text-align: center;
    }

    .footer-logo {
        max-width: 150px;

        margin-left: auto;
        margin-right: auto;
    }

    .footer-slogan {
        max-width: 320px;

        margin-left: auto;
        margin-right: auto;

        font-size: 12px;
    }

    .footer-marcas-icons {
        justify-content: center;
    }


    .footer-links-group {
        text-align: center;
    }

    .footer-links-group h4::after {
        left: 50%;

        transform:
            translateX(-50%);
    }

    .footer-links-group a {
        justify-content: center;

        font-size: 12px;
    }


    .footer-bottom {
        padding:
            18px 15px;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    .footer-cats {
        font-size: 8px;

        line-height: 1.7;
    }


    /* WILLEX */

    .willex-credit-area {
        padding:
            9px 10px 11px;
    }

    .willex-credit {
        min-height: 44px;

        padding:
            5px 9px;

        border-radius: 7px;
    }

    .willex-credit-logo {
        width: 27px;
        height: 27px;

        flex-basis: 27px;

        font-size: 15px;

        border-radius: 5px;
    }

    .willex-credit-content {
        margin-left: 8px;
    }

    .willex-credit-label {
        font-size: 5px;
    }

    .willex-credit-name {
        font-size: 12px;
    }

    .willex-credit-services {
        font-size: 4.5px;
    }

}


/* ============================================================
   MOBILE MUY PEQUEÑO
============================================================ */

@media (max-width: 350px) {

    .willex-credit-name {
        font-size: 11px;
    }

    .willex-credit-services {
        font-size: 4px;
    }

}