/* inicio footer */

.footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 25px 120px 25px;
    color: white;
    position: relative;
    z-index: 99;
}

@media screen and (min-width: 1024px){
    .footer{
        flex-direction: row;
        padding: 50px 50px 120px 50px;
    }
}

.footer-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media screen and (min-width:1024px){
    .footer-left{
        margin-right: 100px;
        align-items: start;
        text-align: left;
    }
}

.footer-left img{
    width: 100%;
    margin: 25px 0 25px 0;
}

.footer-left img:last-child{
    width: 150px;
}

.footer-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width:1024px){
    .footer-right p{
        font-size: 14px;
    }
}

.legales{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.legales a{
    text-decoration: none;
    color: white;
    font-size: 12px;
}

@media screen and (min-width:1024px){
    .legales{
        display: flex;
        width: 100%;
        justify-content: space-around;
        flex-direction: row;
    }
}

.legales-imgs{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.legales-imgs img{
    width: 120px;
    margin-right: 20px;
}

.legales-links {
    text-decoration: underline;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }

  .legales-links a {
    margin: 0 10px 10px 0;
  }

/* fin footer */