.footer {
    background: #2d3a4a;
    border-bottom: 4px solid #2196f3;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-size: 0.98rem;
    box-sizing: border-box;
}

.footer__info {
    color: #fff;
    line-height: 1.4;
}

.footer__info p {
    margin: 0;
}



.footer__link {
    color: #fff;
    text-decoration: underline;
    margin-right: 6px;
    font-size: 0.97em;
}

.footer__link:hover {
    color: #2196f3;
    transition: color 0.2s;
}

.footer__linkedin {
    margin-left: auto;
    margin-right: 15px;
}
.footer__linkedin,
.footer__libro-reclamaciones {
    display: block;
    transition: transform 0.2s;
}

.footer__linkedin:hover,
.footer__libro-reclamaciones:hover {
    transform: scale(1.05);
}

.footer__linkedin img {
    width: 100px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.footer__libro-reclamaciones img {
    width: 170px;
    height: 80px;
    object-fit: contain;
    display: block;
}


@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 25px 15px;
    }

    .footer__links-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .footer__link-separator {
        display: none;
    }
    .footer__linkedin {
        order: 1;
        margin-left: 0;
        margin-right: 0;
    }
    .footer__info {
        order: 2;
        text-align: center;
    }
    .footer__libro-reclamaciones {
        order: 3;
    }
    .footer__linkedin img {
        width: 80px;
        height: 40px;
    }
    .footer__libro-reclamaciones img {
        width: 140px;
        height: 70px;
    }
}