* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #bfbfbf;
}

.footer {
    background-color: #272622;
    width: 100%;
    height: 265px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-container {
    width: 1154px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.footer-title {
    font-size: 13px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 12px;
}

.contacto-content {
    display: block;
    align-items: center;
}

.footer-logo {
    width: 148px;
    height: 62px;
}

.contacto-texto {
    display: flex;
    flex-direction: column;
}

.contacto-info {
    font-weight: 400;
    font-size: 12px;
    margin-top: 40px;
}

.contacto-info strong {
    font-weight: 800;
}

.contacto-info .descarga {
    display: inline-block;
    width: 200px;
}

.contacto-info a.descarga {
    text-decoration: none;
    color: #fff;
}

.contacto-info .descarga img {
    float: left;
    margin-right: 12px;
}

.contacto-info-pp {
    margin-top: 40px;

}

.social-aviso {
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    justify-content: center;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons img {
    width: 50px; 
    height: 50px;
}

.aviso {
    text-decoration: underline; 
    color: #fff;
    font-weight: 300;
    font-size: 11px;
    margin-top: 20px;
}

a.aviso:hover {
    color: #ed1f1f;
}

/* Responsive */
@media (max-width: 600px) {
    .footer {
        height: auto;
        padding: 35px 0;
    }
    
    .footer-container {
        flex-direction: column;
        width: auto;
        text-align: center;
        margin-top: 0;
    }

    .contacto-content {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .social-aviso {
        align-items: center;
        margin-top: 20px;
    }

    .footer-logo {
        margin-bottom: 10px;
    }

    .contacto-info {
        font-size: 11px;
        margin: 20px 0;
    }

    .contacto-info .descarga {
    display: flex;
    width: 100%;
    align-items: center;
    margin-top: -10px;
    }
    .contacto-info .descarga img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    } 

    .social-icons {
        gap: 20px;
    }

    .social-icons img {
        width: 35px; 
        height: 35px;
    }

    .aviso {
        margin-top: 20px;
        font-size: 11px;
    }
}