/* ESTILO PARA FOOTER */
.footer{
    background-color: #1f2c34;
    display: grid;
    justify-items: center;
    width: 100%;
}
.footer ul li{
    font-size: 12px !important;
    line-height: 2;
}

.container-footer{
    padding: 20px;
    color: #ddd;
    max-width: 1250px;
}

.footer-contactenos, .footer-redes-sociales{
    margin-bottom: 20px;
}

.footer-contactenos ul li{
    font-size: 16px;
    /* list-style: disc; */
}
.footer-contactenos ul span{
    font-weight: 600;
    color: #ccc;
}
.footer-contactenos{
    width: auto !important;
}
.redes-sociales-footer{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.redes-sociales-footer a i{
    transition: all 0.5s;
}
.redes-sociales-footer a i:hover {
    color: #fff !important;
    transform: scale(1.5);
}
.parrafo-copy-right{
    background-color: #000;
    width: 100%;
    text-align: center;
    padding: 10px;
}
.parrafo-copy-right p{
    color: #ddd;
    font-family: arial narrow;
    font-size: 14px;
}
.parrafo-copy-right p span{
    color: #3271B8;
    font-weight: 700;
    font-size: 13px;
}
.container-img-footer{
    min-width: 150px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width: 428px){
    .container-footer{
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
@media screen and (min-width: 829px){
    .container-footer{
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        margin: auto;
    }
}
