/* =========================================================
   FOOTER IRK JUEGOS
   ========================================================= */

.irk-footer {
    width: 100%;
    background: var(--dark-blue);
    color: var(--white);
    font-family: inherit;
}


.btn-scrolltop {
    position: fixed;
    bottom:50px;
    left:23px;
    width: 40px;
    height: 40px;
    font-size: 16px;
    background-color: var(--white);
    color: var(--blue);
    border:none;

    box-shadow: rgba(101, 107, 114, 0.2) 0px 8px 24px;
    cursor: pointer;
    transform: translateY(100px);
    transition: 0.3s;
    z-index:11;
    border-radius:3px;
  }

  .btn-scrolltop-active {
    transform: translateY(0);
  }

  .btn-scrolltop:hover{
    background-color: var(--blue);
    color:var(--white);
  }


/* =========================================================
   CONTENIDO PRINCIPAL
   ========================================================= */

.irk-footer-main {
    margin: 0 auto;

     width: min(95%, 1430px);
     padding:80px 0px;

    display: grid;
    grid-template-columns:
        1.05fr
        0.75fr
        1.55fr
        1.15fr;

    column-gap: 65px;
}


/* =========================================================
   LOGO + REDES
   ========================================================= */

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


.irk-footer-logo {
    display: inline-flex;
    align-items: center;

    text-decoration: none;
}


.irk-footer-logo img {
    display: block;

    width: 160px;
    max-width: 100%;
    height: auto;
}


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

.irk-footer-social {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top:30px;
}


.irk-footer-social a {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    background:  var(--blue);

    color: var(--white);

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 20px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.irk-footer-social a:hover {
    transform: translateY(-4px);
    background: var(--blue);
}


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

.irk-footer-column {
    min-width: 0;
}


.irk-footer-column h3 {
    margin: 0;

    color: var(--white);

    font-size: 20px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0;
}


/* =========================================================
   LÍNEA DEBAJO DE LOS TÍTULOS
   ========================================================= */

.irk-footer-line {
    width: 100%;
    height: 2px;

    background: rgba(255, 255, 255, 0.85);

    margin-top: 20px;
    margin-bottom: 28px;
}


/* =========================================================
   LISTAS
   ========================================================= */

.irk-footer-column ul {
    list-style: none;

    padding: 0;
    margin: 0;
}


.irk-footer-column li {
    margin: 0 0 20px;
}


.irk-footer-column li:last-child {
    margin-bottom: 0;
}


.irk-footer-column a {
    color: var(--white);

    text-decoration: none;

    font-size: 14px;
    line-height: 1;

    font-weight: 400;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.irk-footer-column li a:hover {
    opacity: 0.7;
}


/* =========================================================
   CATÁLOGO
   ========================================================= */

.irk-footer-catalog-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 50px;
}


.irk-footer-catalog-list ul {
    min-width: 0;
}


/* =========================================================
   CONTACTO
   ========================================================= */

.irk-footer-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 32px;
}


.irk-footer-contact-item i {
    flex: 0 0 22px;

    font-size: 21px;

    margin-top: 3px;

    color: var(--white);
}


.irk-footer-contact-item a,
.irk-footer-contact-item p {
    margin: 0;

    color: var(--white);

    font-size: 14px;
    line-height: 1.3;

    text-decoration: none;
}


.irk-footer-contact-item a:hover {
    opacity: 0.7;
}


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

.irk-footer-bottom {
    width: 100%;

    border-top: 1px solid rgba(255, 255, 255, 0.85);

    padding: 27px 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
    padding:30px 500px;
}


/* COPYRIGHT */

.irk-footer-copy {
    margin: 0;

    color: var(--white);

    font-size: 16px;
    line-height: 1.5;

    font-weight: 400;
}


.irk-footer-copy strong {
    color: var(--white);
    font-weight: 700;
}


.irk-footer-copy span {
    color: var(--white);
}


/* =========================================================
   ENLACES LEGALES
   ========================================================= */

.irk-footer-legal {
    display: flex;
    align-items: center;

    gap: 45px;
}


.irk-footer-legal a {
    color: rgba(255, 255, 255, 0.8);

    text-decoration: none;

    font-size: 17px;
    line-height: 1.5;

    transition: opacity 0.3s ease;
}


.irk-footer-legal a:hover {
    opacity: 0.65;
}





@media (max-width: 2425px) {


.irk-footer-bottom {
    padding:30px 400px;
}

}


@media (max-width: 2188px) {


.irk-footer-bottom {
    padding:30px 300px;
}

}

@media (max-width: 2000px) {


.irk-footer-bottom {
    padding:30px 200px;
}

}



@media (max-width: 1850px) {


.irk-footer-bottom {
    padding:30px 150px;
}


}

@media (max-width: 1750px) {


.irk-footer-bottom {
    padding:30px 100px;
}

}



@media (max-width: 1650px) {


.irk-footer-bottom {
    padding:30px 50px;
}

}



@media (max-width: 1500px) {


.irk-footer-bottom {
    padding:30px 30px;
}

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1200px) {

    .irk-footer-main {
        padding-left: 55px;
        padding-right: 55px;

        column-gap: 35px;
    }

    .irk-footer-logo img {
        width: 230px;
    }

    .irk-footer-column h3 {
        font-size: 26px;
    }

    .irk-footer-column a {
        font-size: 17px;
    }

    .irk-footer-contact-item a,
    .irk-footer-contact-item p {
        font-size: 17px;
    }

    .irk-footer-social a {
        width: 52px;
        height: 52px;

        font-size: 24px;
    }


}


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

@media (max-width: 950px) {

    .irk-footer {
        text-align: center;
    }


    /* -----------------------------------------
       CONTENIDO PRINCIPAL
       ----------------------------------------- */

    .irk-footer-main {
        width: 100%;

        padding: 35px 25px 55px;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 0;
    }


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

    .irk-footer-brand {
        width: 100%;
        margin-top:50px;
        align-items: center;
    }


    .irk-footer-logo img {
        width: 190px;
    }


    /* -----------------------------------------
       REDES
       ----------------------------------------- */

    .irk-footer-social {
        justify-content: center;

        gap: 15px;

        margin-top: 25px;
    }


    .irk-footer-social a {
        width: 40px;
        height: 40px;

        font-size: 19px;
    }


    /* -----------------------------------------
       COLUMNAS
       ----------------------------------------- */

    .irk-footer-column {
        width: 100%;
        max-width: 500px;

        margin-top: 65px;
    }


    .irk-footer-column h3 {
        font-size: 21px;
    }


    .irk-footer-line {
        width: 75%;

        max-width: 245px;

        margin: 14px auto 25px;
    }


    /* -----------------------------------------
       LISTAS
       ----------------------------------------- */

    .irk-footer-column ul {
        text-align: center;
    }


    .irk-footer-column li {
        margin-bottom: 21px;
    }


    .irk-footer-column a {
        font-size: 14px;
    }


    /* -----------------------------------------
       CATÁLOGO
       ----------------------------------------- */

    .irk-footer-catalog-list {
        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 0;
    }


    .irk-footer-catalog-list ul {
        width: 100%;
    }


    .irk-footer-catalog-list ul + ul {
        margin-top: 0;
    }


    /* -----------------------------------------
       CONTACTO
       ----------------------------------------- */

    .irk-footer-contact {
        margin-top: 65px;
    }


    .irk-footer-contact-item {
        justify-content: center;
        flex-direction: column;

        gap: 10px;

        margin-bottom: 25px;
    }


    .irk-footer-contact-item i {
        flex: 0 0 auto;

        font-size: 16px;

        margin-top: 3px;
    }


    .irk-footer-contact-item a,
    .irk-footer-contact-item p {
        font-size: 14px;

        line-height: 1.5;

        text-align: left;   width:100%;
        text-align:center;
    }


       .irk-footer-contact-item i{
        width:100%;
        text-align:center;
       }


    /* -----------------------------------------
       PARTE INFERIOR
       ----------------------------------------- */

    .irk-footer-bottom {
        padding: 22px 25px 28px;

        display: flex;

        flex-direction: column-reverse;

        justify-content: center;
        align-items: center;

        gap: 20px;
    }


    .irk-footer-copy {
        font-size: 12px;

        text-align: center;
    }


    .irk-footer-legal {
        flex-direction: column;

        gap: 12px;
    }


    .irk-footer-legal a {
        font-size: 13px;

        text-align: center;
    }

}


/* =========================================================
   MOBILE PEQUEÑO
   ========================================================= */

@media (max-width: 480px) {

    .irk-footer-main {
        padding-left: 20px;
        padding-right: 20px;
    }


    .irk-footer-logo img {
        width: 175px;
    }


    .irk-footer-social {
        margin-top: 22px;
    }


    .irk-footer-column {
        margin-top: 58px;
    }


    .irk-footer-column h3 {
        font-size: 20px;
    }


    .irk-footer-column a {
        font-size: 13px;
    }


    .irk-footer-contact-item a,
    .irk-footer-contact-item p {
        font-size: 13px;
    }


    .irk-footer-bottom {
        padding-left: 18px;
        padding-right: 18px;
    }


    .irk-footer-copy {
        font-size: 11px;
    }


    .irk-footer-legal a {
        font-size: 12px;
    }

}
