/* Social Share BCRA - Estilos */
.share { 
    display: flex; 
    gap: .5rem; 
    align-items: center; 
    flex-wrap: wrap; 
}

.share-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 8px;
    background: transparent;
    text-decoration: none;
    padding: 4px;
    transition: transform .3s ease, filter .3s ease;
}

.share-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter .3s ease;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn:hover img {
    filter: grayscale(0%) opacity(1);
}

.share-btn:focus { 
    outline: 2px solid #111; 
    outline-offset: 2px; 
}
