.social-share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.social-share-buttons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.social-share-buttons a:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Cores oficiais */
.social-share-buttons .facebook   { background-color: #1877f2; }
.social-share-buttons .instagram  { background-color: #e4405f; }
.social-share-buttons .pinterest  { background-color: #bd081c; }
.social-share-buttons .whatsapp   { background-color: #25d366; }
.social-share-buttons .linkedin   { background-color: #0a66c2; }
