footer {
    background-color: white;
    padding: 30px 20px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
    font-family: 'Roboto', sans-serif;
    color: #004687;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}
.privacy-link {
    font-size: 12px;
    color: #004687;
    text-decoration: none;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    text-decoration: underline;
    color: #002f5e;
}

.footer-logo {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-logo img {
    height: 80px;
    object-fit: contain;
}

.address {
    flex: 2 1 350px;
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
    padding: 0 10px;
    color: #004687;
}

.social-media {
    flex: 1 1 180px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-media-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border: 2px solid #004687;
    border-radius: 50%;
    color: #004687;
    font-size: 28px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-media-icon:hover {
    background-color: #004687;
    color: white;
}

/* Responsive: móvil */
@media (max-width: 767px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
        padding: 0 10px;
    }

    .footer-logo,
    .social-media,
    .address {
        flex: none;
        width: 100%;
    }

    .footer-logo {
        align-items: center;
    }

    .social-media {
        justify-content: center;
    }

    .social-media-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .address {
        font-size: 13px;
        padding: 0 15px;
    }
}