
.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
}

#igreja {
    justify-content: left;
}

.share-label {
    font-size: 0.85rem;
    color: #ddd;
    margin-right: 5px;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);

    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
}

.share-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
}

/* Cores por rede */
.share-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.share-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.share-btn.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.share-btn.telegram:hover {
    background: #0088CC;
    border-color: #0088CC;
}

.share-btn.copy:hover {
    background: #d4af37;
    border-color: #d4af37;
}

@media (max-width: 768px) {
    .share-buttons {
        justify-content: center;
    }
}