footer{
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    padding: 30px 80px 50px 80px;
    background-color: rgb(166, 25, 46);
}

.footer_info p{
    color: #fff;
    font-size: 13px;
}

.footer_info img{
    max-width: 100%;
    height: auto;
}

.footer_dir{
    display: flex;
    flex-direction: row;
    gap: 100px;
    color: #fff;
}

.footer_dir .footer_links{
    display: flex;
    flex-direction: column;
}

.footer_dir .footer_links p{
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 13px;
}

.footer_dir .footer_links a{
    color: #fff;
    font-size: 13px;
}

.footer_dir .footer_links a:hover{
    text-decoration: underline;
}

.footer_dir .footer_contacto{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_dir .footer_contacto button {
    background-color: #892735;
    color: #fff;
    padding: 15px 15px;
    border-radius: 15px;
    border: #fff solid 2px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer_dir .footer_contacto button a{
    color: #fff;
    transition: all 0.3s ease;
}

.footer_dir .footer_contacto button:hover{
    background-color: #fff;
    color: RGB(165, 35, 35);
}

.footer_dir .footer_contacto button:hover a{
    color: RGB(165, 35, 35);
}

.footer_dir .footer_contacto .footer_redes{
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

.footer_dir .footer_contacto .footer_redes img{
    width: 25px;
}

.icono {
    width: 35px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.icono:hover {
    transform: scale(1.2);
}

@media(max-width:1100px){    
    footer{
        align-items: center;
        padding: 30px 80px 50px 80px;
    }

    .footer_info img{
        width: 150px;
    }
    
    .footer_dir{
        gap: 50px;
    }
    
    .footer_dir .footer_links p{
        font-weight: 700;
        margin-bottom: 10px;
    }

    .footer_dir .footer_contacto button {
        font-size: 13px;
        padding: 10px;
    }
    
    .footer_dir .footer_contacto .footer_redes{
        margin-top: 5px;
    }
    
    .footer_dir .footer_contacto .footer_redes i {
        font-size: 30px;    
        margin-right: 10px; 
    }
}

@media(max-width:910px){
    footer{
        align-items: center;
        padding: 30px 20px 50px 20px;
    }
}

@media(max-width:910px){
    .footer_info img{
        width: 150px;
    }
    
    .footer_dir{
        gap: 50px;
    }
    
    .footer_dir .footer_links a,
    .footer_dir .footer_links p,
    .footer_info p
    {
        font-size: 12px;
    }

    .footer_dir .footer_contacto button{
        padding: 5px 7px;
    }
}

@media(max-width:660px){
    footer{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: rgb(166, 25, 46);
    }

    .footer_info img{
        width: 150px;
    }

    .footer_info p{
        display: none;
    }
    
    .footer_dir{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    
    .footer_dir .footer_links p{
        font-weight: 700;
        margin: 10px 0;
        text-align: center;
        font-size: 17px;
    }
    
    .footer_dir .footer_links a{
        color: #fff;
        text-align: center;
        font-size: 15px;
    }
    
    .footer_dir .footer_links a:hover{
        text-decoration: underline;
    }

    .footer_dir .footer_contacto button {
        padding: 10px;
        font-size: 13px;
    }

    .footer_dir .footer_contacto .footer_redes {
        display: flex;
        justify-content: center;
    }
    
    .footer_dir .footer_contacto .footer_redes i {
        font-size: 30px;    
        margin-right: 10px; 
    }
}
