/*---------------------------*/

.justificar_spacio{
    justify-content: space-between;
}
.justificar_spacio_alrededor{
    justify-content: space-around;
}

footer {
    background-color: var(--shop-bg-color);
    padding-top: 20px;
}

.footer__end {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    padding: 5px 10vw;
    color:#FFFFFF;
    background-color: #101010;
}

@media (min-width: 1224px) {
    /* Estilos para pantallas de al menos 1024px de ancho */
    .footer__end {
        flex-direction: row;
    }
}

.footer__end p, .footer__end div  {
    text-align: center;
}

.footer__end p,.footer__end div span, .footer__end ul {
    opacity: 0.5;
}

.footer__end, .footer__end p {
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 13px;
    font-size: 14px;
}

.footer__end ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 30px;
}

@media (min-width: 1224px) {
    /* Estilos para pantallas de al menos 1024px de ancho */
    .footer__end ul {
        justify-content: flex-start;
        margin-bottom: 0;
    }
}


.footer__end li {
    margin-left: 30px;
}

.developedby-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

@media (min-width: 1224px) {
    /* Estilos para pantallas de al menos 1024px de ancho */  
    .developedby-container{
        margin-bottom:0px;
    }
}

.by__link__collab{
    opacity:0.5;
}

.footer__content {
    /*margin-left: var(--margin-main);
    margin-right: var(--margin-main);*/
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    position: relative;
    padding: 10vw;
    /*padding-bottom: 100px;*/
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 25px;
    flex-wrap: wrap;
}


.footer-left, .footer-left > div {
    /*width: 100%;*/
}

.footer-right {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    /*width: 100%;*/
}

.footer-botones{
    display: flex;
    justify-content: space-around;
}

.footer-left, .footer-right, .footer-botones{
    /*width:33%;*/
}

@media (max-width: 1610px) {

    .footer-left, .footer-right, .footer-botones{
        width:auto;
    } 
}

.footer-right > div {
    margin-left: 60px;
}

.footer-right div:first-child {
    margin-left: 0;
}

@media (min-width: 1024px) {
    /* Estilos para pantallas de al menos 1024px de ancho */
    .footer-right {
        margin-top: 0;
        justify-content: flex-end;
    }
    .footer-right > div {
        margin-left: 60px;
    }
}

.footer__text{
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
}

.footer__text--partnerwith {
    margin-bottom: 15px;
    text-align: left!important;
}

.footer__text--slogan {
    margin-top: 20px;
}


.footer__logo {
    width: 100%;
    /*height: 60px;*/
}

@media (min-width: 1024px) {
    /* Estilos para pantallas de al menos 1024px de ancho */
    .footer__logo {
        width: 350px;
    }
}


.footer__button {
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 600;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color:#000000;
    /*border-radius: 10px;*/
    padding: 15px;
    cursor:pointer;
    float:left;
    /*margin-right: 15px;*/
    width: 100%;
    text-align: center;
    margin-bottom: 7px;
}


.footer__button--black--cuerpo {
    color:#ffffff;
    background-color:#000000;
    border:1px solid #000000;
}


.footer__button--black--cuerpo span{
    color:#ffffff;
}


@media (min-width: 1024px) {
    /* Estilos para pantallas de al menos 1024px de ancho */
    .footer__button {
        width: 195px;
        margin-right: 15px;
    }

    .button_auto{
        width:auto;
    }


    .footer__button--black:hover {
        animation: hoverfoot 1s forwards;
    }
    .footer__button--black:not(:hover) {
        animation: leavefoot 1s forwards;
    }
    .footer__button--black:hover,
    .footer__button--black:focus{
        border-color: #ffffff;
        color:#000000 !important;
    }

    .footer__button--black:hover::after{
        border-color: #ffffff;
        color:#000000 !important;
    }

    .footer__button--black:hover img,
    .footer__button--black:focus img{
        transition: all 1s ease !important;
        filter: invert(1);
    }

    @keyframes hoverfoot {
        from {
            box-shadow: inset 0 0 0 0.01px #ffffff;
        }
        to {
            box-shadow: inset 195px 0 0 0.01px #ffffff;
            border-color: #ffffff;
            color:#000000 !important;
            color: #ffffff;
        }
    }

    @keyframes leavefoot {
        from {
            box-shadow: inset -195px 0 0 0.01px #ffffff;
            border-color: #ffffff;
            color:#000000 !important;
        }
        to {
            box-shadow: inset 0 0 0 0.01px #ffffff;
        }
    }



    .footer__button--black--cuerpo:hover {
        animation: hoverfootCC 1s forwards;
    }

    .footer__button--black--cuerpo:not(:hover) {
        animation: leavefootCC 1s forwards;
    }
    .footer__button--black--cuerpo:hover,
    .footer__button--black--cuerpo:focus{
        border-color: #000000;
        color:#000000 !important;
    }

    .footer__button--black--cuerpo:hover span{
        color:#000000 !important;
    }

    .footer__button--black--cuerpo:hover::after{
        border-color: #000000;
        color:#000000 !important;
    }

    .footer__button--black--cuerpo:hover img,
    .footer__button--black--cuerpo:focus img{
        transition: all 1s ease !important;
        filter: invert(1);
    }

    @keyframes hoverfootCC {
        from {
            box-shadow: inset 0 0 0 0.01px #ffffff;
        }
        to {
            box-shadow: inset 250px 0 0 0.01px #ffffff;
            border-color: #000000;
            color:#000000 !important;
            color: #ffffff;
        }
    }


    @keyframes leavefootCC {
        from {
            box-shadow: inset -195px 0 0 0.01px #ffffff;
            border-color: #000000;
            color:#ffffff !important;
        }
        to {
            box-shadow: inset 0 0 0 0.01px #ffffff;
        }
    }





    .footer__button--black--invers:hover {
        animation: hoverfootI 1s forwards;
    }
    .footer__button--black--invers:not(:hover) {
        animation: leavefootI 1s forwards;
    }
    .footer__button--black--invers:hover,
    .footer__button--black--invers:focus{
        border-color: #ffffff;
        color:#000000 !important;
    }

    .footer__button--black--invers:hover::after{
        border-color: #ffffff;
        color:#000000 !important;
    }

    .footer__button--black--invers img,
    .footer__button--black--invers img{
        transition: all 1s ease !important;
        filter: invert(1);
    }


    @keyframes hoverfootI {
        from {
            box-shadow: inset 0 0 0 0.01px #ffffff;
        }
        to {
            box-shadow: inset 195px 0 0 0.01px #ffffff;
            border-color: #ffffff;
            color:#000000 !important;
            color: #ffffff;
        }
    }

    @keyframes leavefootI {
        from {
            box-shadow: inset -195px 0 0 0.01px #ffffff;
            border-color: #ffffff;
            color:#000000 !important;
        }
        to {
            box-shadow: inset 0 0 0 0.01px #ffffff;
        }
    }






    .footer__button--white:hover {
        animation: hoverfootW 1s forwards;
    }
    .footer__button--white:not(:hover) {
        animation: leavefootW 1s forwards;
    }
    .footer__button--white:hover,
    .footer__button--white:focus{
        border-color: #ffffff;
        color:#ffffff !important;
    }

    .footer__button--white:hover::after{
        border-color: #ffffff;
        color:#000000 !important;
    }

    .footer__button--white:hover img,
    .footer__button--white:focus img{
        transition: all 1s ease !important;
        filter: invert(1);
    }

    @keyframes hoverfootW {
        from {
            box-shadow: inset 0 0 0 0.01px #000000;
        }
        to {
            box-shadow: inset 195px 0 0 0.01px #000000;
            border-color: #ffffff;
            color:#000000 !important;
            color: #fff;
        }
    }

    @keyframes leavefootW {
        from {
            box-shadow: inset -195px 0 0 0.01px #000000;
            border-color: #ffffff;
            color:#ffffff !important;
        }
        to {
            box-shadow: inset 0 0 0 0.01px #000000;
        }
    }





    .footer__button--white--claro:hover {
        animation: hoverfootWC 1s forwards;
    }
    .footer__button--white--claro:not(:hover) {
        animation: leavefootWC 1s forwards;
    }
    .footer__button--white--claro:hover,
    .footer__button--white--claro:focus{
        border-color: #c7b79d;
        color:#000000 !important;
    }

    .footer__button--white--claro:hover::after{
        border-color: #c7b79d;
        color:#000000 !important;
    }

    .footer__button--white--claro:hover img,
    .footer__button--white--claro:focus img{
        transition: all 1s ease !important;
        filter: invert(1);
    }

    @keyframes hoverfootWC {
        from {
            box-shadow: inset 0 0 0 0.01px #ffffff;
        }
        to {
            box-shadow: inset 195px 0 0 0.01px #ffffff;
            border-color: #c7b79d;
            color:#000000 !important;
            color: #fff;
        }
    }

    @keyframes leavefootWC {
        from {
            box-shadow: inset -195px 0 0 0.01px #ffffff;
            border-color: #c7b79d;
            color:#000000 !important;
        }
        to {
            box-shadow: inset 0 0 0 0.01px #ffffff;
        }
    }



}

.footer__button--black {
    background-color: transparent;
    color:#ffffff;
    border: 1px solid #ffffff;
    transition: all 1s ease !important;
}






.footer__link{
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 2px;
}

.footer__text{
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
}

@media (max-width: 1600px) {
    .footer-right {
        align-items: flex-end;
    }
    .footer-right > div {
        max-width: 100px;
    }
}
@media (max-width: 1500px) {
    .footer-right > div {
        margin-left: 22px;
    }
}


@media (max-width: 1420px) {
    .footer__logo, .footer-left {
        width: 230px;
    }

}

@media (max-width: 1260px) {
    /* Estilos para pantallas de al menos 1024px de ancho */
    .footer__content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .footer__text{
        text-align: center;
    }
    
    .footer-left {
        width: auto;
    }
    
    .footer-logo {
        width: 100%;
    }
}

.footer__text--partnerwith {
    margin-bottom: 15px;
}


.margenSuperiorTextoPie{
    margin-top: 30px;
}

.flechaEnlacePie{
    width:14px;
    margin-right: 5px;
}
.hover-item {
    transition: 0.3s;
}
.hover-item:hover {
    transform: translate(5px, 0px);
}

footer h6 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

footer h3 {
    font-family: 'Montserrat', serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 13px;
}

.legal-conditions {
    text-decoration: underline;
    cursor: pointer;
}

.legal-conditions-container {
    margin: 20px 0px;
}

#firma-infozara {
    /*position: absolute;*/
    /*bottom: 0;*/
    /*left: 0;*/
    /*display: inline-block;*/
    width: 50%;
    align-self: flex-end;
}

.firma-infozara-inner {
    /*position: absolute;/*
    /*bottom: 0;*/
    /*left: 0;*/
    display: flex;
    font-size: 0.9rem;
}

.firma-infozara-inner a p {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.firma-infozara-inner a:last-child {
    border-left: 1px solid var(--logo-color);
    padding-left: 1rem;
    margin-left: 1rem;
}

.candadoPie{
    width: 15px;
    float: left;
    position: absolute;
    right: 36px;
    bottom: 10px;
    opacity: 0.85;
}

/* Maximum aspect ratio */
@media (max-aspect-ratio: 1000/900) {

    /*
    .footer__content {
        flex-direction: column;
        justify-content: center;
    }
    */

    /*
    .footer-right {
        width: 100%;
        justify-content: flex-end;
    }
    */

    #firma-infozara {
        width: 100%;
        margin-top: 2rem;
    }

    #customer-care {
        margin-left: 0;
    }

}

@media (max-width: 1150px) {
    /*.footer__logo{
        width:220px;
    }*/
}

@media (max-width: 750px) {
    /*.footer__content {
        flex-direction: column;
        justify-content: center;    
        align-items: center;
        gap:35px;
    }*/

    /*.footer-right {
        width: 100%;
    }*/

    .segundoPie{
        margin-top:55px;
        justify-content: space-between;
    }

    /*.footer__end {
        flex-direction: column-reverse;
        row-gap: 16px;
    }*/

    .elementoFinalPie{
        width: 100%;
        display:flex;
        align-items: center;
        justify-content: space-around;
        text-align: center;
    }
}

/* Portrait phones (less than 700px) */
@media (hover: none)
and (pointer: coarse)
and (orientation: portrait), (max-width: 400px) {

    footer {
        background-color: var(--shop-bg-color);
        /*padding: 110px 0; */
    }

    /*.footer__content {
        flex-direction: column;
        justify-content: center;
        gap:35px;
    }*/

    #customer-care {
        margin-top: 30px;
    }

    footer h6 {
        /*font-size: 1.5rem;*/
    }



    .legal-conditions {
    }

    .legal-conditions-container {
        margin: 1rem 0px;
    }

    .social {
        /*height: 110px;*/
    }

    .social a {
        height: 100%;
    }

    .social a img {
        height: 100%;
    }

    .social-icon {
        height: 100%;
    }

    #firma-infozara {
        position: relative;
        width: 100%;
        /*height: 8rem;*/
        margin-top: /*4*/1rem;
        display: flex;
        align-items: center;
    }

    .firma-infozara-inner {
        display: flex;
        flex-direction: column;
    }

    .firma-infozara-inner a p {
        /*font-size: 2.5rem;*/
    }

    .firma-infozara-inner a:last-child {
        border: none;
        padding-left: 0;
        margin-left: 0;
    }

    .candadoPie{
        right: 20px;
        bottom: /*40px*/70px;
    }

}