.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-label {
    font-size: 14px;
    font-weight: 500;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
}

.share-btn i {
    pointer-events: none;
}

/* Cores por plataforma */
.share-btn.facebook { background-color: #3b5998; }
.share-btn.whatsapp { background-color: #25D366; }
.share-btn.twitter  { background-color: #000000; }
.share-btn.native   { background-color: #6c757d; }

.share-btn:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

/* Estilo do botão de comentar */
.btn-comentar {
    background-color: #007BFF; /* Azul Bootstrap */
    color: white;
    font-weight: bold;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-comentar:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Comentários*/
.comentarios textarea,
.comentarios input {
    border-radius: 6px;
}

.comentario-item {
    background-color: #f8f9fa;
}